aboutsummaryrefslogtreecommitdiffstats
path: root/deny.toml
blob: 994369f9cc0893b39abfbf91aa9ece2f2a260431 (plain) (blame)
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
targets = [
    { triple = "x86_64-unknown-linux-musl" },
    { triple = "x86_64-unknown-linux-gnu" },
]

[advisories]
yanked = "deny"
unsound = "deny"

[bans]
deny = [
    { name = "openssl-sys" },
]
skip = [
    # this is pulled in by rsa -> num-bigint-dig, but it's just a build dep so
    # i don't care much
    { name = "autocfg", version = "0.1.7" }
]

[licenses]
allow = ["MIT", "BSD-3-Clause", "Apache-2.0", "ISC"]
copyleft = "deny"
exceptions = [
    { name = "ring", allow = ["OpenSSL", "MIT", "ISC"] }
]

[[licenses.clarify]]
name = "ring"
version = "*"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
    { path = "LICENSE", hash = 0xbd0eed23 }
]