-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
40 lines (35 loc) · 1.01 KB
/
deny.toml
File metadata and controls
40 lines (35 loc) · 1.01 KB
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
# https://embarkstudios.github.io/cargo-deny/
[advisories]
# Check all crates (workspace + transitive) for advisories.
version = 2
[licenses]
# Boon is MIT-licensed. Allow permissive and weak-copyleft licenses.
# Unlisted licenses are denied by default.
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]
# polars-arrow-format ships a LICENSE file (Apache-2.0) but has no SPDX
# field in its Cargo.toml manifest.
[[licenses.clarify]]
name = "polars-arrow-format"
expression = "Apache-2.0"
license-files = [{ path = "LICENSE", hash = 0x001c7e6c }]
[bans]
# Warn on multiple versions of the same crate in the dependency tree.
multiple-versions = "warn"
# Allow all wildcard dependencies (common in workspaces).
wildcards = "allow"
[sources]
# Only allow crates from crates.io.
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []