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. Run with `cargo deny check`.
# Docs: https://embarkstudios.github.io/cargo-deny/
[]
= true
= false
[]
# RustSec advisory DB. Yank == bad, vulnerability == fail.
= "~/.cargo/advisory-db"
= ["https://github.com/RustSec/advisory-db"]
= "deny"
= []
[]
# `holt` itself is MIT. The dep graph is mostly MIT / Apache-2.0
# / BSD-3-Clause / ISC / Unicode-3.0 — the standard permissive
# set. We refuse copyleft (GPL / LGPL / MPL) without an explicit
# allow.
= [
"MIT",
"MIT-0",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
"CC0-1.0",
"OpenSSL",
]
= 0.8
[]
# Don't let two semver-incompatible major versions of the same
# crate end up in the build at once — usually a sign of a stale
# transitive that should be bumped.
= "warn"
= "deny"
= "all"
[]
# Only allow deps from crates.io. Any git / path dep is a yellow
# flag for a published library — usually a sign that something
# slipped in unintentionally.
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]
= []