From 76cdd7db29c052a0894966d8971c4777497344eb Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Fri, 6 Sep 2024 15:36:11 +0300 Subject: [PATCH] Again --- neqo-bin/Cargo.toml | 2 +- neqo-common/Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/neqo-bin/Cargo.toml b/neqo-bin/Cargo.toml index 2ea0c8cb77..9f65db35dc 100644 --- a/neqo-bin/Cargo.toml +++ b/neqo-bin/Cargo.toml @@ -45,7 +45,7 @@ url = { version = "2.5", default-features = false } [dev-dependencies] criterion = { version = "0.5", default-features = false } -tokio = { version = "1", default-features = false } +tokio = { version = "1", default-features = false, features = ["sync"] } [features] bench = [] diff --git a/neqo-common/Cargo.toml b/neqo-common/Cargo.toml index df42d218a5..cbcb25f30b 100644 --- a/neqo-common/Cargo.toml +++ b/neqo-common/Cargo.toml @@ -19,13 +19,14 @@ workspace = true # Sync with https://searchfox.org/mozilla-central/source/Cargo.lock 2024-02-08 enum-map = { version = "2.7", default-features = false } env_logger = { version = "0.10", default-features = false } -hex = { version = "0.4", default-features = false, optional = true } +hex = { version = "0.4", default-features = false, features = ["alloc"], optional = true } log = { workspace = true } qlog = { workspace = true } [target."cfg(windows)".dependencies] # Sync with https://searchfox.org/mozilla-central/source/Cargo.lock 2024-02-08 windows = { version = "0.58", default-features = false, features = ["Win32_Media"] } + [dev-dependencies] test-fixture = { path = "../test-fixture" }