1
1
mirror of https://github.com/wez/wezterm.git synced 2024-10-03 17:57:26 +03:00

deps: update flume

This commit is contained in:
Wez Furlong 2024-05-13 10:29:12 -07:00
parent 1ca5e6cc90
commit 70c4e03750
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
3 changed files with 4 additions and 19 deletions

20
Cargo.lock generated
View File

@ -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",

View File

@ -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"

View File

@ -12,4 +12,4 @@ async-io = "2.3"
anyhow = "1.0"
thiserror = "1.0"
lazy_static = "1.4"
flume = "0.10"
flume = "0.11"