1
1
mirror of https://github.com/Byron/gitoxide synced 2025-10-06 01:52:40 +02:00

fix cargo-deny using a prodash-update and ignore directive

This commit is contained in:
Sebastian Thiel
2025-03-11 15:32:36 +08:00
parent 93fd3297ef
commit cf7f34dcd6
5 changed files with 651 additions and 539 deletions

1177
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -176,7 +176,7 @@ gix = { version = "^0.70.0", path = "gix", default-features = false }
clap = { version = "4.1.1", features = ["derive", "cargo"] }
clap_complete = "4.4.3"
prodash = { version = "29.0.0", optional = true }
prodash = { version = "29.0.1", optional = true }
is-terminal = { version = "0.4.0", optional = true }
env_logger = { version = "0.10.0", default-features = false }
crosstermion = { version = "0.14.0", optional = true, default-features = false }

View File

@@ -8,7 +8,12 @@
# More documentation for the advisories section can be found here:
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
[advisories]
ignore = []
ignore = [
# human-time in env-logger
"RUSTSEC-2025-0014",
# `paste` - macro crate without replacement
"RUSTSEC-2024-0436"
]

View File

@@ -138,7 +138,7 @@ crc32fast = { version = "1.2.1", optional = true }
sha1 = { version = "0.10.0", optional = true }
# progress
prodash = { version = "29.0.0", optional = true }
prodash = { version = "29.0.1", optional = true }
bytesize = { version = "1.0.1", optional = true }
# pipe

View File

@@ -381,7 +381,7 @@ gix-protocol = { version = "^0.48.0", path = "../gix-protocol" }
gix-transport = { version = "^0.45.0", path = "../gix-transport", optional = true }
# Just to get the progress-tree feature
prodash = { version = "29.0.0", optional = true, features = ["progress-tree"] }
prodash = { version = "29.0.1", optional = true, features = ["progress-tree"] }
once_cell = "1.14.0"
signal-hook = { version = "0.3.9", default-features = false, optional = true }
thiserror = "2.0.0"