Skip to content

Commit

Permalink
refactor: Fix minimum log dependency specification (#2257)
Browse files Browse the repository at this point in the history
The `log::log_enabled!` macro was added in version 0.4.6 of the crate.
Hence, a version specification of 0.4 is insufficient. Fix it.

Signed-off-by: Daniel Müller <deso@posteo.net>
  • Loading branch information
d-e-s-o committed Apr 24, 2024
1 parent 5806063 commit d3b27ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -118,7 +118,7 @@ hyper = { version = "1", features = ["http1", "client"] }
hyper-util = { version = "0.1.3", features = ["http1", "client", "client-legacy", "tokio"] }
h2 = { version = "0.4", optional = true }
once_cell = "1"
log = "0.4"
log = "0.4.6"
mime = "0.3.16"
percent-encoding = "2.1"
tokio = { version = "1.0", default-features = false, features = ["net", "time"] }
Expand Down

0 comments on commit d3b27ac

Please sign in to comment.