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
44
45
46
47
|
[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 = ["dep:dirs"]
dispatch_tree = []
general_renderer = [
"dep:serde",
"dep:ron",
"dep:serde_json",
"dep:serde_yaml",
"dep:toml",
]
repl = []
clap = []
comp = ["dep:just_template"]
debug = ["dep:log", "dep:env_logger"]
[dependencies]
just_fmt.workspace = true
once_cell.workspace = true
dirs = { workspace = true, optional = 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 }
|