aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml27
1 files changed, 27 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c869d3d..3a729d2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,34 @@ resolver = "2"
members = ["luz", "lampada", "stanza", "jid", "filamento"]
[workspace.dependencies]
+jid = { path = "jid" }
+stanza = { path = "stanza" }
+luz = { path = "luz" }
+lampada = { path = "lampada" }
tokio = { version = "1.42.0" }
+peanuts = { version = "0.1.0", git = "https://bunny.garden/peanuts" }
+thiserror = "2.0.11"
+chrono = { version = "0.4.40" }
+serde = { version = "1.0.219" }
+tracing = { version = "0.1.40" }
+uuid = { version = "1.13.1" }
+futures = { version = "0.3.30" }
+
+# WASM dependencies
+
+tokio_with_wasm = "0.8.2"
+web-sys = "0.3"
+js-sys = "0.3"
+wasm-bindgen = "0.2"
+wasm-bindgen-futures = "0.4.50"
+
+# dev-dependencies
+
+tracing-wasm = "0.2.1"
+wasm-bindgen-test = "0.3.0"
+test-log = "0.2"
+env_logger = "*"
+tracing-subscriber = "0.3"
[patch.crates-io]
tokio_with_wasm = { path = "../tokio-with-wasm/tokio_with_wasm" }