Skip to content

Commit faa4b34

Browse files
committed
Resolve cargo-deny security audit failures
1 parent fb10f1d commit faa4b34

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

deny.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
version = 2
66
db-path = "~/.cargo/advisory-db"
77
db-urls = ["https://github.com/rustsec/advisory-db"]
8-
ignore = []
8+
ignore = [
9+
# serde_cbor is unmaintained but only used in fuzz targets
10+
"RUSTSEC-2021-0127",
11+
]
912

1013
[licenses]
1114
version = 2
@@ -19,6 +22,8 @@ allow = [
1922
"Zlib",
2023
"CC0-1.0",
2124
"MPL-2.0",
25+
"Unicode-3.0",
26+
"MITNFA",
2227
]
2328
confidence-threshold = 0.8
2429

fuzz/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "dash-fuzz"
33
edition = "2024"
44
version = { workspace = true}
55
authors = ["Generated by fuzz/generate-files.sh"]
6+
license = "CC0-1.0"
67
publish = false
78

89
[profile.release]

rpc-integration-test/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "integration_test"
33
authors = ["Steven Roose <[email protected]>"]
4+
license = "CC0-1.0"
45
edition = "2024"
56
publish = false
67

0 commit comments

Comments
 (0)