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
# cargo-deny configuration — see https://embarkstudios.github.io/cargo-deny/
# Run locally with `just audit`; enforced in CI via `.github/workflows/ci.yml`.
[]
= false
= false
# `cargo deny check advisories` — flags dependencies with known RUSTSEC vulnerabilities
# or that are unmaintained/yanked. No exceptions yet; add an `ignore` entry with a
# `reason` if a specific advisory is investigated and judged not applicable.
[]
= []
# `cargo deny check licenses` — every license below is permissive and GPL-compatible.
# GPL-2.0-or-later is RocksGraph's own license, listed so the root package itself
# passes the check.
[]
= [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Zlib",
"0BSD",
"Unlicense",
"Unicode-3.0",
"GPL-2.0-or-later",
]
= 0.8
[]
= false
# `cargo deny check bans` — warn (not deny) on duplicate dependency versions for now;
# tighten to "deny" once the dependency tree is deliberately curated.
[]
= "warn"
= "deny"
# `cargo deny check sources` — only allow crates.io; no git/alternate-registry deps.
[]
= "deny"
= "deny"