-
Notifications
You must be signed in to change notification settings - Fork 11
/
deny.toml
116 lines (105 loc) · 2.66 KB
/
deny.toml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Configuration used for dependency checking with cargo-deny.
#
# For further details on all configuration options see:
# https://embarkstudios.github.io/cargo-deny/checks/cfg.html
[graph]
targets = [
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "x86_64-unknown-linux-musl" },
{ triple = "x86_64-apple-darwin" },
]
# Deny all advisories unless explicitly ignored.
[advisories]
yanked = "deny"
ignore = [
# Remove once chrono has been updated to pull in a fixed version of time.
# See https://github.com/chronotope/chrono/issues/553
"RUSTSEC-2020-0071",
# atty is not used with a custom global allocator.
"RUSTSEC-2021-0145",
# rusoto_* is Unmaintained.
# TODO(#416): migrate off rusoto
"RUSTSEC-2022-0071",
# ansi_term is Unmaintained (via structopt(0.3.26)).
"RUSTSEC-2021-0139",
# proc-macro-error is Unmaintained (via structopt-derive(0.4.18)).
"RUSTSEC-2024-0370",
# atty is Unmaintained (via structopt(v0.3.26)).
"RUSTSEC-2024-0375",
# No use of externally-provided WebPKI chains.
"RUSTSEC-2023-0052",
# TODO(692): upgrade tink-gcp-kms dependencies
"RUSTSEC-2024-0336",
]
# Deny multiple versions unless explicitly skipped.
[bans]
multiple-versions = "deny"
wildcards = "allow"
######################################
# Old versions of crates pulled in (transitively) by rusoto_*(v0.47.0)
[[bans.skip]]
name = "hmac"
version = "=0.11.0"
[[bans.skip]]
name = "base64"
version = "=0.13.1"
[[bans.skip]]
name = "digest"
version = "0.9.0"
[[bans.skip]]
name = "sha2"
version = "0.9.9"
[[bans.skip]]
name = "bitflags"
version = "1.3.2"
[[bans.skip]]
name = "h2"
version = "0.3.26"
[[bans.skip]]
name = "http"
version = "0.2.11"
[[bans.skip]]
name = "http-body"
version = "0.4.5"
[[bans.skip]]
name = "hyper"
version = "0.14.24"
[[bans.skip]]
name = "socket2"
version = "0.4.9"
# structopt(0.3.26) => structopt-derive(0.4.18) => heck(0.3.*)
[[bans.skip]]
name = "heck"
version = "0.3.1"
# tower(0.4.13) => indexmap(1.9.3) => hashbrown(0.12.3)
[[bans.skip]]
name = "indexmap"
version = "1.9.3"
[[bans.skip]]
name = "hashbrown"
version = "0.12.3"
# Various dependencies use block-buffer(0.9.0)
[[bans.skip]]
name = "block-buffer"
version = "0.9.0"
# Various dependencies use syn(1.0.109)
[[bans.skip]]
name = "syn"
version = "1.0.109"
######################################
# List of allowed licenses.
# For more detailed information see http://go/thirdpartylicenses.
[licenses]
allow = [
"Apache-2.0",
"ISC",
"MIT",
"OpenSSL",
"BSD-3-Clause",
"Unicode-DFS-2016",
]
[[licenses.clarify]]
name = "ring"
version = "*"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 3171872035 }]