From 0b2450551abd51e32afdeea8457589895343782d Mon Sep 17 00:00:00 2001 From: Max Inden Date: Tue, 23 Jul 2024 12:28:17 +0200 Subject: [PATCH] deps(quinn-udp): enable direct-log feature https://github.com/quinn-rs/quinn/pull/1923 made the `tracing` dependency optional. In addition, when `direct-log` is enabled, it allows using `log` instead of `tracing` for logging. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f82e09ba69..3bc14976b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ rust-version = "1.76.0" [workspace.dependencies] log = { version = "0.4", default-features = false } qlog = { version = "0.13", default-features = false } -quinn-udp = { version = "0.5.4", default-features = false } +quinn-udp = { version = "0.5.4", default-features = false, features = ["direct-log"] } [workspace.lints.clippy] cargo = { level = "warn", priority = -1 }