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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Configuration for https://github.com/EmbarkStudios/cargo-deny
# Install: cargo install cargo-deny
# Run: cargo deny check
# This section is considered when running `cargo deny check advisories`
# More documentation for the advisories section can be found here:
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
[]
= "~/.cargo/advisory-db"
= ["https://github.com/rustsec/advisory-db"]
= "workspace"
= "warn"
= [
# Add advisory IDs or package exceptions to ignore here with justification
# Example: "RUSTSEC-2021-0124", # reason for ignoring
# Ignore unmaintained transitive crates we accept for now
]
# This section is considered when running `cargo deny check licenses`
# More documentation for the licenses section can be found here:
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
[]
# Allow only OSI-approved and FSF Free licenses by default
# See https://spdx.org/licenses/ for full list
= [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"MIT",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-DFS-2016",
"Unicode-3.0",
"NCSA",
"Unlicense",
"Zlib",
"0BSD",
"MPL-2.0",
"CDLA-Permissive-2.0",
"AGPL-3.0-or-later",
"AGPL-3.0",
]
= 0.8
= [
# Add exceptions here for specific crates
# { allow = ["AGPL-3.0"], name = "your-crate" },
]
[[]]
= "ring"
= "MIT AND ISC AND OpenSSL"
= [{ = "LICENSE", = 0xbd0eed23 }]
# This section is considered when running `cargo deny check bans`
# More documentation for the bans section can be found here:
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
[]
= "warn"
= "allow"
= "all"
# Certain crates/versions that will be skipped when doing duplicate detection
= [
# Add specific crate versions to skip here
# { name = "some-crate", version = "0.1.0" },
]
= [
# Add entire crate trees to skip here
# { name = "some-crate", version = "0.1.0" },
]
= [
# Add crates to ban entirely here
# { name = "bad-crate", wrappers = [] },
]
# This section is considered when running `cargo deny check sources`
# More documentation for the sources section can be found here:
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
[]
= "warn"
= "warn"
= ["https://github.com/rust-lang/crates.io-index"]
= ["https://github.com/pykeio/ort.git"]
[]
= ["ultralytics"]