Skip to content

Commit 8145f98

Browse files
committed
⬇️ Downgrade clap to restore MSRV 1.70
1 parent 4d97743 commit 8145f98

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

Cargo.lock

Lines changed: 18 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/benchmark/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
66
publish = false
77

88
[dependencies]
9-
clap = { version = "4.5", features = ["derive"] }
9+
clap = { version = "4.4", features = ["derive"] }
1010
anstyle = "1.0.8"
1111
indicatif = "0.17.7"
1212
terminal-colorsaurus.workspace = true

crates/pycolorsaurus/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false
7+
rust-version = "1.70.0"
78

89
[lib]
910
name = "colorsaurus"

crates/termtheme/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name = "termtheme"
33
version = "0.1.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
6-
rust-version = "1.74.0"
6+
rust-version = "1.70.0"
77
publish = false
88

99
[dependencies]
1010
anstyle = "1.0.8"
1111
anstyle-query = "1.1.1"
12-
clap = { version = "4.5", features = ["derive"] }
12+
clap = { version = "4.4", features = ["derive"] }
1313
terminal-colorsaurus.workspace = true

deny.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ wildcards = "deny"
2020
allow-wildcard-paths = true
2121
skip = [
2222
{ crate = "windows-sys", reason = "an old version is used by mio, see https://github.com/tokio-rs/mio/pull/1820 for updating it" },
23+
{ 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)" }
2324
]
2425

2526
[sources]

0 commit comments

Comments
 (0)