From cd974a7945b1558d3fa7d06d901ca8b8db540996 Mon Sep 17 00:00:00 2001 From: Matthias Einwag Date: Sun, 14 Feb 2021 00:33:04 -0800 Subject: [PATCH] Disable hdrhistogram features This causes nom to be pulled in, which currently causes the CI error and build conflict between `funty` and `bitvec`: https://github.com/myrrlyn/funty/issues/3 We don't need the feature in this scenario anyway. --- bench/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/Cargo.toml b/bench/Cargo.toml index 18802cf7e..0d83e2102 100644 --- a/bench/Cargo.toml +++ b/bench/Cargo.toml @@ -10,7 +10,7 @@ publish = false anyhow = "1.0.22" bytes = "1" futures = "0.3.8" -hdrhistogram = "7.2" +hdrhistogram = { version = "7.2", default-features = false } quinn = { path = "../quinn" } rcgen = "0.8" rustls = "0.19"