-
Notifications
You must be signed in to change notification settings - Fork 3
/
deny.toml
37 lines (33 loc) · 1016 Bytes
/
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
[graph]
targets = [
{ triple = "aarch64-unknown-linux-musl" },
{ triple = "x86_64-unknown-linux-musl" },
{ triple = "aarch64-apple-darwin" },
{ triple = "x86_64-apple-darwin" },
{ triple = "aarch64-pc-windows-msvc" },
{ triple = "x86_64-pc-windows-msvc" },
{ triple = "wasm32-unknown-unknown" },
]
[advisories]
version = 2
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
ignore = []
[licenses]
version = 2
allow = ["Apache-2.0", "BSL-1.0", "MIT", "ISC", "Unicode-DFS-2016"]
[bans]
multiple-versions = "deny"
skip = [
# Both are because of the `matchers` dependency in `tracing-subscriber`
{ name = "regex-automata", version = "0.1.10" },
{ name = "regex-syntax", version = "0.6.29" },
]
skip-tree = [
# miette -> terminal_size depends on this old version
{ name = "windows-sys", version = "0.48.0" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]