aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/Cargo.toml
blob: 4ce9ecd59483baa92780e1b43a8a543c8e1f0526 (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
[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 = []
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 }