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
# cargo-deny configuration. Run locally with `cargo deny check`.
#
# fasti's required dependency set is deliberately one crate deep
# (thiserror), so this is less about pruning a large graph than about
# two things downstream users in regulated environments will ask about:
# that no dependency carries a copyleft or unknown license, and that
# advisories are checked on every change rather than at release time.
[]
= true
[]
= 2
= "deny"
= []
[]
= 2
# Permissive only, and deliberately no copyleft entry: fasti ships as
# Apache-2.0 OR MIT and downstream users in regulated environments need
# that to stay true of the whole graph.
#
# The QuantLib-derived Easter tables are vendored source, not a
# dependency, so their modified-BSD terms are not visible to cargo-deny
# at all — they are recorded in THIRD-PARTY-NOTICES instead.
= [
"Apache-2.0",
"MIT",
"Unicode-3.0",
]
= 0.93
[]
= "warn"
= "deny"
# Adding a runtime dependency is a design-review item (ARCHITECTURE.md),
# not a convenience choice. Anything that pulls in a clock, a timezone
# database, or another date library contradicts the crate's premise.
= [
{ = "chrono", = ["fasti"] },
{ = "time" },
{ = "jiff" },
]
[]
= "deny"
= "deny"