forked from MettaChain/PropChain-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
25 lines (21 loc) · 628 Bytes
/
Copy pathdeny.toml
File metadata and controls
25 lines (21 loc) · 628 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# cargo-deny configuration for PropChain
# Minimal configuration to check for outdated/unmaintained dependencies
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
[bans]
# Crates that must have mutation coverage gated in CI (lending, bridge, oracle).
# Surviving mutants in these crates will fail the nightly workflow.
multiple-versions = "warn"
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []
[licenses]
unlicensed = "deny"
allow = [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
]