summaryrefslogtreecommitdiff
path: root/mingling/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'mingling/Cargo.toml')
-rw-r--r--mingling/Cargo.toml24
1 files changed, 0 insertions, 24 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
deleted file mode 100644
index d7e820c..0000000
--- a/mingling/Cargo.toml
+++ /dev/null
@@ -1,24 +0,0 @@
-[package]
-name = "mingling"
-version = "0.1.0"
-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]
-full = ["macros", "general_renderer"]
-default = ["macros"]
-macros = ["mingling_macros"]
-general_renderer = ["dep:serde", "mingling_macros/serde"]
-
-[dependencies]
-mingling_macros = { version = "0.1.0", optional = true }
-just_fmt = "0.1.2"
-serde = { version = "1.0", features = ["derive"], optional = true }
-thiserror = "2"
-tokio = { version = "1", features = ["full"] }