diff options
author | 2025-04-18 18:58:29 +0100 | |
---|---|---|
committer | 2025-04-18 18:58:29 +0100 | |
commit | c502af8c5436391e6d25ec5bd5c33360d42da769 (patch) | |
tree | d9416d14afb1a1044a0dccab41e9cff181b82309 | |
parent | cb8d485fb4612558e87449a31f18ade8c879f754 (diff) | |
download | luz-c502af8c5436391e6d25ec5bd5c33360d42da769.tar.gz luz-c502af8c5436391e6d25ec5bd5c33360d42da769.tar.bz2 luz-c502af8c5436391e6d25ec5bd5c33360d42da769.zip |
fix(filamento): tokio io
Diffstat (limited to '')
-rw-r--r-- | filamento/Cargo.toml | 5 |
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"] } |