forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
40 lines (36 loc) · 922 Bytes
/
Copy pathdeny.toml
File metadata and controls
40 lines (36 loc) · 922 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[licenses]
allow = [
"MIT",
"CC0-1.0",
"ISC",
"OpenSSL",
"Unlicense",
"BSD-2-Clause",
"BSD-3-Clause",
"Apache-2.0",
"Zlib",
]
unlicensed = "warn"
private = { ignore = true }
[[licenses.clarify]]
name = "ring"
version = "*"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 }
]
[advisories]
ignore = [
# `net2` crate has been deprecated; use `socket2` instead
"RUSTSEC-2020-0016",
# failure: failure is officially deprecated/unmaintained
"RUSTSEC-2020-0036",
# stdweb is unmaintained
# can be removed after next release of time
# https://github.com/time-rs/time/commit/8b2734351a5cd05a9bd3315f1af76c28b5852fec
"RUSTSEC-2020-0056",
# ordered_flat - can be removed when heim next releases their beta branch
"RUSTSEC-2020-0082",
# lucet-runtime-internals - we'll need to upgrade here
"RUSTSEC-2020-0004",
]