Skip to content

Commit

Permalink
update env_logger to 0.10.0
Browse files Browse the repository at this point in the history
The reason for that update is to get rid of the `atty` dependency
which suffers from unsoundness issue RUSTSEC-2021-0145:
<https://rustsec.org/advisories/RUSTSEC-2021-0145.html>
env_logger 0.10.0 no longer uses atty, so this issue gets fixed
as a side effect of the update.
  • Loading branch information
striezel authored and pr2502 committed Aug 22, 2023
1 parent 5e69d2b commit f6f0eb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 26 deletions.
30 changes: 5 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
anyhow = "1.0.53"
clap = { version = "4.3.0", features = ["derive", "env"] }
directories = "4.0.1"
env_logger = "0.9.0"
env_logger = "0.10.0"
log = "0.4.14"
serde = { version = "1.0.136, < 1.0.172", features = ["derive"] }
serde_json = "1.0.78"
Expand Down

0 comments on commit f6f0eb7

Please sign in to comment.