summaryrefslogtreecommitdiff
path: root/mingling/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-29 21:58:10 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-29 21:58:10 +0800
commit32b30055ed9647f8f7ba4f3eee92020b79d06e0d (patch)
tree1f8254bd17bbc81a37e0091f0d8ba3daa4d4593d /mingling/Cargo.toml
parent596e5e2440df2d32f1cf3e052dc633e774edf6ee (diff)
Add mingling crate with core re-export and documentation
Diffstat (limited to 'mingling/Cargo.toml')
-rw-r--r--mingling/Cargo.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
new file mode 100644
index 0000000..8c30565
--- /dev/null
+++ b/mingling/Cargo.toml
@@ -0,0 +1,20 @@
+[package]
+name = "mingling"
+version = "0.1.1"
+edition = "2024"
+authors = ["Weicao-CatilGrass"]
+license = "MIT OR Apache-2.0"
+readme = "README.md"
+description = "A procedural command-line framework with subcommand support"
+keywords = ["cli", "framework", "procedural", "subcommand", "command-line"]
+categories = ["command-line-interface"]
+repository = "https://github.com/catilgrass/mingling"
+
+[features]
+default = ["mingling_core/default"]
+full = ["mingling_core/full"]
+macros = ["mingling_core/macros"]
+general_renderer = ["mingling_core/general_renderer"]
+
+[dependencies]
+mingling_core = { path = "../mingling_core", default-features = false }