-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
68 lines (63 loc) · 1.73 KB
/
deny.toml
File metadata and controls
68 lines (63 loc) · 1.73 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# ref: https://embarkstudios.github.io/cargo-deny/checks/cfg.html
[graph]
targets = [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
]
all-features = true
[advisories]
ignore = [
# rsa crate timing sidechannel (Marvin Attack) — no fix available upstream.
# Transitive dependency from russh via async-ssh2-tokio.
"RUSTSEC-2023-0071",
]
unused-ignored-advisory = "deny"
[licenses]
allow = [
"MIT",
"Apache-2.0",
"Unicode-3.0",
"BSD-3-Clause",
"ISC",
"CC0-1.0",
"MPL-2.0",
]
unused-allowed-license = "deny"
unused-license-exception = "deny"
[bans]
multiple-versions = "deny"
multiple-versions-include-dev = true
wildcards = "deny"
skip = [
{ name = "block-buffer", version = "*" },
{ name = "console", version = "*" },
{ name = "const-oid", version = "*" },
{ name = "crypto-bigint", version = "*" },
{ name = "crypto-common", version = "*" },
{ name = "der", version = "*" },
{ name = "digest", version = "*" },
{ name = "generic-array", version = "*" },
{ name = "getrandom", version = "*" },
{ name = "json5", version = "*" },
{ name = "nix", version = "*" },
{ name = "pem-rfc7468", version = "*" },
{ name = "pkcs8", version = "*" },
{ name = "rand", version = "*" },
{ name = "rand_chacha", version = "*" },
{ name = "rand_core", version = "*" },
{ name = "sha1", version = "*" },
{ name = "sha2", version = "*" },
{ name = "signature", version = "*" },
{ name = "spki", version = "*" },
{ name = "toml", version = "*" },
{ name = "toml_datetime", version = "*" },
{ name = "unicode-width", version = "*" },
{ name = "winnow", version = "*" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
required-git-spec = "rev"
unused-allowed-source = "deny"