Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Due to the current MSRV of Rust 1.51 (rather old), one needs to use that
version for `cargo update`: `cargo +1.51 update`. Note, that this drops
the unmaintained and vulnerable `atty` at the cost of a downgrade of
`colored` (fortunately without necessary code changes). One problem is,
that the older cargo does not handle the MSRV correctly and selects a
"too new" version of `is-terminal`, hence a manual adjustment of that
dependency is necessary:

    `cargo +1.51 update -p is-terminal --precise 0.4.7`
  • Loading branch information
jfrimmel committed Sep 17, 2024
1 parent 86d07c2 commit 16d3e8c
Show file tree
Hide file tree
Showing 2 changed files with 203 additions and 19 deletions.
220 changes: 202 additions & 18 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 @@ -35,7 +35,7 @@ version = "0.5"
default-features = false

[dependencies.colored]
version = "2"
version = "1.9.4"

[dependencies.bytesize]
version = "1"
Expand Down

0 comments on commit 16d3e8c

Please sign in to comment.