From ee6ce8f0e9eea1ebd76eb158fce21dd3219f33ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sat, 19 Feb 2022 14:27:00 +0100 Subject: [PATCH] Remove hashbrown dependency where unused --- Cargo.lock | 2 -- aquatic_http_protocol/Cargo.toml | 1 - aquatic_ws_load_test/Cargo.toml | 1 - 3 files changed, 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b5fa2be..0823d82 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -143,7 +143,6 @@ dependencies = [ "anyhow", "bendy", "criterion", - "hashbrown 0.11.2", "hex", "httparse", "itoa 1.0.1", @@ -282,7 +281,6 @@ dependencies = [ "futures", "futures-rustls", "glommio 0.6.0 (git+https://github.com/DataDog/glommio.git?rev=2efe2f2a08f54394a435b674e8e0125057cbff03)", - "hashbrown 0.11.2", "log", "mimalloc", "quickcheck", diff --git a/aquatic_http_protocol/Cargo.toml b/aquatic_http_protocol/Cargo.toml index 6934321..ead5436 100644 --- a/aquatic_http_protocol/Cargo.toml +++ b/aquatic_http_protocol/Cargo.toml @@ -23,7 +23,6 @@ harness = false [dependencies] anyhow = "1" -hashbrown = "0.11" hex = { version = "0.4", default-features = false } httparse = "1" itoa = "1" diff --git a/aquatic_ws_load_test/Cargo.toml b/aquatic_ws_load_test/Cargo.toml index 4d7e059..d97a3d7 100644 --- a/aquatic_ws_load_test/Cargo.toml +++ b/aquatic_ws_load_test/Cargo.toml @@ -21,7 +21,6 @@ aquatic_ws_protocol = "0.1.0" futures = "0.3" futures-rustls = "0.22" glommio = { git = "https://github.com/DataDog/glommio.git", rev = "2efe2f2a08f54394a435b674e8e0125057cbff03" } -hashbrown = { version = "0.11", features = ["serde"] } log = "0.4" mimalloc = { version = "0.1", default-features = false } rand = { version = "0.8", features = ["small_rng"] }