diff --git a/Cargo.lock b/Cargo.lock index 8138dace8..e0fd65aa8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1649,7 +1649,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4" dependencies = [ "bit_field", - "flume 0.11.0", + "flume", "half", "lebe", "miniz_oxide 0.7.2", @@ -1791,19 +1791,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "flume" -version = "0.10.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" -dependencies = [ - "futures-core", - "futures-sink", - "nanorand", - "pin-project", - "spin", -] - [[package]] name = "flume" version = "0.11.0" @@ -3353,7 +3340,6 @@ dependencies = [ "fancy-regex", "filedescriptor", "finl_unicode", - "flume 0.10.14", "hostname", "k9", "lazy_static", @@ -4286,7 +4272,7 @@ dependencies = [ "async-executor", "async-io 2.3.2", "async-task", - "flume 0.10.14", + "flume", "lazy_static", "thiserror", ] @@ -6809,7 +6795,7 @@ checksum = "30e7d227c9f961f2061c26f4cb0fbd4df0ef37e056edd0931783599d6c94ef24" dependencies = [ "arrayvec", "cfg-if", - "flume 0.11.0", + "flume", "js-sys", "log", "naga", diff --git a/mux/Cargo.toml b/mux/Cargo.toml index 5ca45a6e8..8083df507 100644 --- a/mux/Cargo.toml +++ b/mux/Cargo.toml @@ -48,7 +48,6 @@ url = "2" wezterm-ssh = { path = "../wezterm-ssh" } wezterm-dynamic = { path = "../wezterm-dynamic" } wezterm-term = { path = "../term", features=["use_serde"] } -flume = "0.10" [target."cfg(windows)".dependencies] ntapi = "0.4" diff --git a/promise/Cargo.toml b/promise/Cargo.toml index 06df0b229..a556d3245 100644 --- a/promise/Cargo.toml +++ b/promise/Cargo.toml @@ -12,4 +12,4 @@ async-io = "2.3" anyhow = "1.0" thiserror = "1.0" lazy_static = "1.4" -flume = "0.10" +flume = "0.11"