From ac6eefc30fe10a61b482be360261a6cd10b53f33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sat, 19 Dec 2020 02:53:37 +0100 Subject: [PATCH] Update crossbeam-channel to 0.5 --- Cargo.lock | 47 +++++++------------------------- aquatic_http/Cargo.toml | 2 +- aquatic_udp/Cargo.toml | 2 +- aquatic_udp_bench/Cargo.toml | 2 +- aquatic_udp_load_test/Cargo.toml | 2 +- aquatic_ws/Cargo.toml | 2 +- 6 files changed, 15 insertions(+), 42 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b1b913e..44a37bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -79,7 +79,7 @@ dependencies = [ "aquatic_cli_helpers", "aquatic_common", "aquatic_http_protocol", - "crossbeam-channel 0.4.4", + "crossbeam-channel", "either", "hashbrown 0.9.1", "histogram", @@ -147,7 +147,7 @@ dependencies = [ "aquatic_cli_helpers", "aquatic_common", "aquatic_udp_protocol", - "crossbeam-channel 0.4.4", + "crossbeam-channel", "hashbrown 0.9.1", "histogram", "indexmap", @@ -170,7 +170,7 @@ dependencies = [ "anyhow", "aquatic_cli_helpers", "aquatic_udp", - "crossbeam-channel 0.4.4", + "crossbeam-channel", "indicatif", "mimalloc", "num-format", @@ -186,7 +186,7 @@ dependencies = [ "anyhow", "aquatic_cli_helpers", "aquatic_udp_protocol", - "crossbeam-channel 0.4.4", + "crossbeam-channel", "hashbrown 0.9.1", "mimalloc", "mio", @@ -216,7 +216,7 @@ dependencies = [ "aquatic_cli_helpers", "aquatic_common", "aquatic_ws_protocol", - "crossbeam-channel 0.4.4", + "crossbeam-channel", "either", "hashbrown 0.9.1", "histogram", @@ -512,16 +512,6 @@ dependencies = [ "itertools", ] -[[package]] -name = "crossbeam-channel" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87" -dependencies = [ - "crossbeam-utils 0.7.2", - "maybe-uninit", -] - [[package]] name = "crossbeam-channel" version = "0.5.0" @@ -529,7 +519,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775" dependencies = [ "cfg-if 1.0.0", - "crossbeam-utils 0.8.1", + "crossbeam-utils", ] [[package]] @@ -540,7 +530,7 @@ checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9" dependencies = [ "cfg-if 1.0.0", "crossbeam-epoch", - "crossbeam-utils 0.8.1", + "crossbeam-utils", ] [[package]] @@ -551,23 +541,12 @@ checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d" dependencies = [ "cfg-if 1.0.0", "const_fn", - "crossbeam-utils 0.8.1", + "crossbeam-utils", "lazy_static", "memoffset", "scopeguard", ] -[[package]] -name = "crossbeam-utils" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" -dependencies = [ - "autocfg", - "cfg-if 0.1.10", - "lazy_static", -] - [[package]] name = "crossbeam-utils" version = "0.8.1" @@ -921,12 +900,6 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" -[[package]] -name = "maybe-uninit" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" - [[package]] name = "memchr" version = "2.3.4" @@ -1312,9 +1285,9 @@ version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" dependencies = [ - "crossbeam-channel 0.5.0", + "crossbeam-channel", "crossbeam-deque", - "crossbeam-utils 0.8.1", + "crossbeam-utils", "lazy_static", "num_cpus", ] diff --git a/aquatic_http/Cargo.toml b/aquatic_http/Cargo.toml index ddd7554..355a943 100644 --- a/aquatic_http/Cargo.toml +++ b/aquatic_http/Cargo.toml @@ -20,7 +20,7 @@ anyhow = "1" aquatic_cli_helpers = "0.1.0" aquatic_common = "0.1.0" aquatic_http_protocol = "0.1.0" -crossbeam-channel = "0.4" +crossbeam-channel = "0.5" either = "1" hashbrown = "0.9" histogram = "0.6" diff --git a/aquatic_udp/Cargo.toml b/aquatic_udp/Cargo.toml index 250a6c0..ac8a2b0 100644 --- a/aquatic_udp/Cargo.toml +++ b/aquatic_udp/Cargo.toml @@ -19,7 +19,7 @@ anyhow = "1" aquatic_cli_helpers = "0.1.0" aquatic_common = "0.1.0" aquatic_udp_protocol = "0.1.0" -crossbeam-channel = "0.4" +crossbeam-channel = "0.5" hashbrown = "0.9" histogram = "0.6" indexmap = "1" diff --git a/aquatic_udp_bench/Cargo.toml b/aquatic_udp_bench/Cargo.toml index 782c19f..9f3f565 100644 --- a/aquatic_udp_bench/Cargo.toml +++ b/aquatic_udp_bench/Cargo.toml @@ -13,7 +13,7 @@ name = "aquatic_udp_bench" anyhow = "1" aquatic_cli_helpers = "0.1.0" aquatic_udp = "0.1.0" -crossbeam-channel = "0.4" +crossbeam-channel = "0.5" indicatif = "0.15" mimalloc = { version = "0.1", default-features = false } num-format = "0.4" diff --git a/aquatic_udp_load_test/Cargo.toml b/aquatic_udp_load_test/Cargo.toml index d746d68..d396868 100644 --- a/aquatic_udp_load_test/Cargo.toml +++ b/aquatic_udp_load_test/Cargo.toml @@ -13,7 +13,7 @@ name = "aquatic_udp_load_test" anyhow = "1" aquatic_cli_helpers = "0.1.0" aquatic_udp_protocol = "0.1.0" -crossbeam-channel = "0.4" +crossbeam-channel = "0.5" hashbrown = "0.9" mimalloc = { version = "0.1", default-features = false } mio = { version = "0.7", features = ["udp", "os-poll", "os-util"] } diff --git a/aquatic_ws/Cargo.toml b/aquatic_ws/Cargo.toml index d6c9501..e1afa9d 100644 --- a/aquatic_ws/Cargo.toml +++ b/aquatic_ws/Cargo.toml @@ -20,7 +20,7 @@ anyhow = "1" aquatic_cli_helpers = "0.1.0" aquatic_common = "0.1.0" aquatic_ws_protocol = "0.1.0" -crossbeam-channel = "0.4" +crossbeam-channel = "0.5" either = "1" hashbrown = { version = "0.9", features = ["serde"] } histogram = "0.6"