diff options
author | 2025-05-09 17:02:42 +0100 | |
---|---|---|
committer | 2025-05-09 17:28:31 +0100 | |
commit | f4cc2703dda3b81836a5637b55ee4e4e20639313 (patch) | |
tree | a0fc97aabf578286a2e1fb679f85c1698444aacf /Cargo.toml | |
parent | 68044a8b43070d91d76a9fbb04b5275b396ff1ad (diff) | |
download | luz-f4cc2703dda3b81836a5637b55ee4e4e20639313.tar.gz luz-f4cc2703dda3b81836a5637b55ee4e4e20639313.tar.bz2 luz-f4cc2703dda3b81836a5637b55ee4e4e20639313.zip |
fix: use tokio_with_wasm fork that doesn't remove
tasks
Co-authored-by: cel 🌸 <cel@bunny.garden>
Diffstat (limited to '')
-rw-r--r-- | Cargo.toml | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,11 +1,10 @@ [workspace] resolver = "2" -members = [ - "luz", - "lampada", - "stanza", "jid", "filamento", -] +members = ["luz", "lampada", "stanza", "jid", "filamento"] [workspace.dependencies] tokio = { version = "1.42.0" } + +[patch.crates-io] +tokio_with_wasm = { path = "../tokio-with-wasm/tokio_with_wasm" } |