Skip to content

Commit 499a8e9

Browse files
committed
🔧 Update clap / fix deny config
1 parent 7040f71 commit 499a8e9

File tree

5 files changed

+24
-22
lines changed

5 files changed

+24
-22
lines changed

Cargo.lock

Lines changed: 12 additions & 18 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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
name = "benchmark"
33
edition = "2021"
44
version = "1.0.0"
5+
license = "MIT OR Apache-2.0"
6+
publish = false
57

68
[dependencies]
7-
clap = { version = "4.4", features = ["derive"] }
9+
clap = { version = "4.5", features = ["derive"] }
810
anstyle = "1.0.8"
911
indicatif = "0.17.7"
1012
terminal-colorsaurus.workspace = true

crates/pycolorsaurus/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
name = "colorsaurus"
33
version = "0.1.0"
44
edition = "2021"
5+
license = "MIT OR Apache-2.0"
6+
publish = false
57

6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
78
[lib]
89
name = "colorsaurus"
910
crate-type = ["cdylib"]

crates/termtheme/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ name = "termtheme"
33
version = "0.1.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
6-
rust-version = "1.70.0" # Search for `FIXME(msrv)` when bumping.
6+
rust-version = "1.74.0"
7+
publish = false
78

89
[dependencies]
910
anstyle = "1.0.8"
1011
anstyle-query = "1.1.1"
11-
clap = { version = "4.4", features = ["derive"] }
12+
clap = { version = "4.5", features = ["derive"] }
1213
terminal-colorsaurus.workspace = true

deny.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,16 @@ feature-depth = 1
88
allow = [
99
"MIT",
1010
"Apache-2.0",
11+
"BSD-3-Clause",
12+
"Unicode-DFS-2016",
13+
"Apache-2.0 WITH LLVM-exception",
1114
]
1215
confidence-threshold = 1.0
1316

1417
[bans]
1518
multiple-versions = "deny"
1619
wildcards = "deny"
20+
allow-wildcard-paths = true
1721
skip = [
1822
{ crate = "windows-sys", reason = "an old version is used by mio, see https://github.com/tokio-rs/mio/pull/1820 for updating it" },
1923
]

0 commit comments

Comments
 (0)