From 721b6f9f608977b938dbc9b847c9221370b5ee15 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 6 Apr 2026 20:19:43 +0800 Subject: Add workspace configuration and examples --- Cargo.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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"] } -- cgit