Skip to content

Commit

Permalink
deps(quinn-udp): enable direct-log feature
Browse files Browse the repository at this point in the history
quinn-rs/quinn#1923 made the `tracing` dependency
optional. In addition, when `direct-log` is enabled, it allows using `log`
instead of `tracing` for logging.
  • Loading branch information
mxinden committed Jul 23, 2024
1 parent 4b20fea commit 0b24505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 0b24505

Please sign in to comment.