From f046cf51e531795d88ff8ea241106ccb4193d7eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Gaspard?= Date: Tue, 23 Jan 2024 23:18:29 +0100 Subject: [PATCH] depend on async-broadcast, 0.6 seems to be unsupported on wasm yet and requires a PR https://github.com/smol-rs/async-broadcast/pull/51 would be necessary for 0.6, but 0.5 seems to build fine, so let's just use it --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 3af74ecc..b1e46346 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,6 +33,7 @@ _tests = [ # internal feature, for use by wasm tests in particular and thus all [dependencies] anyhow = "1.0" +async-broadcast = "0.5.0" async-stream = "0.3.5" chrono = "0.4.31" deepsize = "0.2.0"