summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-06 20:19:43 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-06 20:19:43 +0800
commit721b6f9f608977b938dbc9b847c9221370b5ee15 (patch)
tree95483051d50d183357a097c41a678bad14c657c0 /Cargo.toml
parente68e1230d4157c32592900372699411c7151b4e5 (diff)
Add workspace configuration and examples
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml23
1 files changed, 23 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..023c9ba
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,23 @@
+[package]
+name = "mingling-workspace"
+version = "0.1.0"
+edition = "2024"
+
+[workspace]
+package.version = "0.1.0"
+members = [
+ "mingling",
+ "mingling_cli",
+ "mingling_core",
+ "mingling_macros",
+ "examples/example-basic",
+ "examples/example-general-renderer",
+ "examples/example-picker",
+]
+
+resolver = "2"
+
+[workspace.dependencies]
+mingling = { version = "0.1.4", features = ["full"] }
+serde = { version = "1", features = ["derive"] }
+tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }