blob: 26e642b3efd3f1db6de7a67387ce6dbdd7098b88 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
[package]
name = "mingling_core"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Core of the mingling library"
repository.workspace = true
[features]
nightly = []
default = []
async = []
builds = []
dispatch_tree = []
general_renderer = ["dep:serde"]
ron_serde_fmt = ["dep:ron"]
json_serde_fmt = ["dep:serde_json"]
yaml_serde_fmt = ["dep:serde_yaml"]
toml_serde_fmt = ["dep:toml"]
repl = []
clap = []
comp = ["dep:just_template"]
debug = ["dep:log", "dep:env_logger"]
[dependencies]
just_fmt.workspace = true
# comp
just_template = { workspace = true, optional = true }
# general_renderer
serde = { workspace = true, optional = true }
ron = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
serde_yaml = { workspace = true, optional = true }
toml = { workspace = true, optional = true }
# debug
log = { workspace = true, optional = true }
env_logger = { workspace = true, optional = true }
|