summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
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"] }