summaryrefslogtreecommitdiff
path: root/mingling/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-30 17:26:03 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-30 17:26:03 +0800
commit4421fb2794f2af292f8781e7d12ae002a3f10a9b (patch)
tree31a358dd80a7e1d3855f4a6281eaf5e010bfb429 /mingling/Cargo.toml
parentc9e3676e0e2353dc09471c783a3a263dee0fdcb1 (diff)
Add argument parser module with picker API
Diffstat (limited to 'mingling/Cargo.toml')
-rw-r--r--mingling/Cargo.toml13
1 files changed, 10 insertions, 3 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
index 4d13d0b..c9f0116 100644
--- a/mingling/Cargo.toml
+++ b/mingling/Cargo.toml
@@ -10,11 +10,18 @@ keywords = ["cli", "framework", "procedural", "subcommand", "command-line"]
categories = ["command-line-interface"]
repository = "https://github.com/catilgrass/mingling"
+[dev-dependencies]
+mingling = { path = ".", features = ["full"] }
+
[features]
default = ["mingling_core/default"]
-full = ["mingling_core/full"]
+full = ["mingling_core/full", "general_renderer", "macros", "parser"]
+general_renderer = ["mingling_core/general_renderer", "dep:serde"]
macros = ["mingling_core/macros"]
-general_renderer = ["mingling_core/general_renderer"]
+
+parser = ["dep:size"]
[dependencies]
-mingling_core = { version = "0.1.0", default-features = false }
+mingling_core = { path = "../mingling_core", default-features = false }
+serde = { version = "1.0", features = ["derive"], optional = true }
+size = { version = "0.5", optional = true }