aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2025-04-18 18:58:29 +0100
committerLibravatar cel 🌸 <cel@bunny.garden>2025-04-18 18:58:29 +0100
commitc502af8c5436391e6d25ec5bd5c33360d42da769 (patch)
treed9416d14afb1a1044a0dccab41e9cff181b82309
parentcb8d485fb4612558e87449a31f18ade8c879f754 (diff)
downloadluz-c502af8c5436391e6d25ec5bd5c33360d42da769.tar.gz
luz-c502af8c5436391e6d25ec5bd5c33360d42da769.tar.bz2
luz-c502af8c5436391e6d25ec5bd5c33360d42da769.zip
fix(filamento): tokio io
-rw-r--r--filamento/Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/filamento/Cargo.toml b/filamento/Cargo.toml
index 1519f58..9fcf247 100644
--- a/filamento/Cargo.toml
+++ b/filamento/Cargo.toml
@@ -23,9 +23,12 @@ image = "0.25.6"
hex = "0.4.3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
-tokio = { workspace = true, features = ["sync", "time", "rt", "fs"] }
+tokio = { workspace = true, features = ["sync", "time", "rt", "fs", "io-std"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
+jid = { version = "0.1.0", path = "../jid", features = ["rusqlite"] }
+wasm-bindgen = "0.2"
+wasm-bindgen-futures = "0.4"
rusqlite = { git = "https://github.com/Spxg/rusqlite.git", branch = "wasm-demo", features = ["uuid", "chrono", "precompiled-wasm"] }
tokio = { workspace = true, features = ["sync", "time", "rt"] }
tokio_with_wasm = { version = "0.8.2", features = ["sync", "time", "rt"] }