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
# cargo-deny configuration.
#
# Enforces three things at CI time:
# 1. No security advisories (`cargo deny check advisories`)
# 2. Only permissive OSS licenses in the dependency tree
# (`cargo deny check licenses`)
# 3. Only crates.io as a source (`cargo deny check sources`)
#
# Run locally: `cargo deny check`
[]
= true
# Exclude dev-dependencies from the crate graph (the `check` CLI flag
# `--exclude-dev` was removed in cargo-deny 0.20; it is config-only now).
= true
[]
= 2
= "deny"
= []
[]
= 2
= 0.8
= [
# This crate's own license.
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
# Permissive licenses used across the Rust ecosystem.
"BSD-2-Clause",
"BSD-3-Clause",
"0BSD",
"ISC",
"Zlib",
"Unicode-3.0",
"Unicode-DFS-2016",
"CC0-1.0",
"MPL-2.0",
"MIT-0",
"BSL-1.0",
]
[]
= "warn"
= "deny"
[]
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]