aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/Cargo.toml
blob: 85afd55a9d4975c4ff140784a3a78c2aaed2f4a5 (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
44
45
46
47
48
49
50
[package]
name = "mingling_core"
version.workspace = true
edition.workspace = true
authors = ["Weicao-CatilGrass"]
license.workspace = true
description = "Core of the mingling library"
readme = "README.md"
repository.workspace = true
keywords = ["cli", "cli-framework", "framework", "procedural", "command-line"]
categories = ["command-line-interface"]

[features]
nightly = []
default = []
async = []
builds = []

dispatch_tree = []
structural_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"]
pathf = ["dep:mingling_pathf"]

[dependencies]
mingling_pathf = { workspace = true, optional = true }

just_fmt.workspace = true

# comp
just_template = { workspace = true, optional = true }

# structural_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 }