generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 13
/
deny.toml
48 lines (42 loc) · 1.03 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
[graph]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
]
all-features = true
# This crate is not published, exclude it since it triggers various warnings
# downstream users wouldn't see
exclude = ["minidumper-test"]
[advisories]
version = 2
ignore = []
[licenses]
version = 2
allow = ["MIT", "Apache-2.0"]
confidence-threshold = 0.8
exceptions = [{ allow = ["Unicode-DFS-2016"], name = "unicode-ident" }]
[bans]
multiple-versions = "deny"
deny = [
# Incredibly heavyweight, we should never have a dependency on this
{ name = "windows" },
# We should never have a dependency on openssl
{ name = "openssl-sys" },
]
skip = [
# The crate is in the repo, so we have the path, but it's also a crates.io
# dependency
{ name = "crash-context" },
]
skip-tree = [
]
[bans.workspace-dependencies]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = []
[sources.allow-org]
#github = ["rust-minidump"]