Skip to content

Commit

Permalink
⬇️ Downgrade clap to restore MSRV 1.70
Browse files Browse the repository at this point in the history
  • Loading branch information
bash committed Sep 27, 2024
1 parent 4d97743 commit 8145f98
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 15 deletions.
30 changes: 18 additions & 12 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 crates/benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
publish = false

[dependencies]
clap = { version = "4.5", features = ["derive"] }
clap = { version = "4.4", features = ["derive"] }
anstyle = "1.0.8"
indicatif = "0.17.7"
terminal-colorsaurus.workspace = true
1 change: 1 addition & 0 deletions crates/pycolorsaurus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
rust-version = "1.70.0"

[lib]
name = "colorsaurus"
Expand Down
4 changes: 2 additions & 2 deletions crates/termtheme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name = "termtheme"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.74.0"
rust-version = "1.70.0"
publish = false

[dependencies]
anstyle = "1.0.8"
anstyle-query = "1.1.1"
clap = { version = "4.5", features = ["derive"] }
clap = { version = "4.4", features = ["derive"] }
terminal-colorsaurus.workspace = true
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ wildcards = "deny"
allow-wildcard-paths = true
skip = [
{ crate = "windows-sys", reason = "an old version is used by mio, see https://github.com/tokio-rs/mio/pull/1820 for updating it" },
{ crate = "heck@0.4", reason = "depended on by clap. updated in a newer clap version, but we can't update because that would require an MSRV bump)" }
]

[sources]
Expand Down

0 comments on commit 8145f98

Please sign in to comment.