Merge
Crypto WASM TESTS
This commit is contained in:
parent
2a00bb35e7
commit
687e6f9642
49 changed files with 6272 additions and 366 deletions
32
deny.toml
Normal file
32
deny.toml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# cargo-deny configuration. See https://embarkstudios.github.io/cargo-deny/
|
||||
# Run locally with: cargo deny check
|
||||
|
||||
[advisories]
|
||||
# Fail on any security advisory affecting the dependency tree.
|
||||
yanked = "deny"
|
||||
ignore = []
|
||||
|
||||
[bans]
|
||||
# Flag multiple versions of the same crate so duplicate trees are visible.
|
||||
multiple-versions = "warn"
|
||||
wildcards = "deny"
|
||||
|
||||
[licenses]
|
||||
# Allowlist of licenses acceptable for this project's dependencies.
|
||||
allow = [
|
||||
"MIT",
|
||||
"Apache-2.0",
|
||||
"Apache-2.0 WITH LLVM-exception",
|
||||
"BSD-2-Clause",
|
||||
"BSD-3-Clause",
|
||||
"ISC",
|
||||
"Unicode-3.0",
|
||||
"Zlib",
|
||||
"MPL-2.0",
|
||||
]
|
||||
confidence-threshold = 0.8
|
||||
|
||||
[sources]
|
||||
unknown-registry = "deny"
|
||||
unknown-git = "deny"
|
||||
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
||||
Loading…
Reference in a new issue