From edd38ee4a7164170e9e456a92be286609062424c Mon Sep 17 00:00:00 2001 From: Emilis Date: Fri, 9 May 2025 17:00:29 +0100 Subject: fix: use tokio_with_wasm fork that doesn't remove MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tasks Co-authored-by: cel 🌸 --- Cargo.toml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 89c001f..e2ef76c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,10 @@ base64 = "0.22.1" chrono = "0.4.41" chrono-humanize = "0.2.3" console_error_panic_hook = "0.1.7" -filamento = { path = "../luz/filamento", features = ["reactive_stores", "opfs"] } +filamento = { path = "../luz/filamento", features = [ + "reactive_stores", + "opfs", +] } futures = "0.3.31" indexmap = "2.9.0" jid = { path = "../luz/jid" } @@ -20,7 +23,10 @@ reactive_stores = "0.1.8" serde = "1.0.219" stylance = "0.6.0" thiserror = "2.0.12" -tokio = { version = "1.44.2", features = ["sync"] } +tokio = { version = "1.44.2", features = ["sync", "rt"] } tracing = "0.1.41" tracing-wasm = "0.2.1" uuid = { version = "1.16.0", features = ["v4"] } + +[patch.crates-io] +tokio_with_wasm = { path = "../tokio-with-wasm/tokio_with_wasm" } -- cgit