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
# cargo-deny configuration — supply-chain checks run in CI.
# See https://embarkstudios.github.io/cargo-deny/
[]
= 2
# Fail on security vulnerabilities. Only check the *workspace's* own crates for
# "unmaintained" status — we can't control transitive crates (e.g. rustls-pemfile
# pulled in by qdrant-client/tonic), and flagging those just creates noise.
= "workspace"
= [
# tokio-tar (CVE-2025-62518): a *dev-dependency only*, pulled in by
# testcontainers for integration tests. It is never compiled into the
# released binary or a `cargo install`. Revisit when testcontainers ships a
# release that drops/patches tokio-tar.
{ = "RUSTSEC-2025-0111", = "dev-dependency only (testcontainers); not in any shipped artifact" },
]
[]
# Surface accidental dependency bloat / duplicate versions without failing CI.
= "warn"
= "deny"
[]
= 2
# Permissive licenses compatible with revector's MIT OR Apache-2.0 license.
= [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
"MPL-2.0",
"CC0-1.0",
# Mozilla CA root store bundled by webpki-roots (a permissive data license).
"CDLA-Permissive-2.0",
]
= 0.9
[]
# Only allow dependencies from crates.io — no unknown registries or git sources,
# which is a common supply-chain attack vector.
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]