We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5e7f97 commit e35bce5Copy full SHA for e35bce5
2 files changed
deny.toml
@@ -43,4 +43,6 @@ version = 2
43
db-path = "~/.cargo/advisory-dbs"
44
db-urls = [ "https://github.com/RustSec/advisory-db" ]
45
yanked = "warn"
46
-ignore = []
+ignore = [
47
+ "RUSTSEC-2024-0436", # "paste" is no longer maintained
48
+]
do_checks.sh
@@ -8,7 +8,7 @@ PYTHON=$(which python || which python3)
8
cargo fmt --check -- --config newline_style=Unix
9
10
# Install cargo deny first with: cargo install cargo-deny
11
-# cargo deny check --hide-inclusion-graph
+cargo deny check --hide-inclusion-graph
12
13
# Checks enabled everywhere, including tests, benchmarks
14
cargo clippy --all-features --workspace --all-targets -- \
0 commit comments