diff options
-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"] } |