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
# cargo-deny configuration. Run with `cargo deny check`.
# Docs: https://embarkstudios.github.io/cargo-deny/
[]
= false
= false
[]
= 2
= "deny"
= []
[]
= 2
# Allow-list — every license used by a transitive dep must appear here.
# graphdblite itself is MIT; this list governs what we accept *from*
# upstream deps. Re-run `cargo deny check licenses` after dep changes
# and add the SPDX id (and confirm compatibility with MIT) before
# whitelisting.
= [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"Unicode-3.0",
]
= 0.93
[]
= "warn"
= "deny"
# Workspace members publish a graph-DB API surface; runtime panics from
# bad deps would surface as data corruption — keep this strict.
= []
= []
= []
[]
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]
= []