-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
54 lines (49 loc) · 1.8 KB
/
deny.toml
File metadata and controls
54 lines (49 loc) · 1.8 KB
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
52
53
54
# SPDX-License-Identifier: AGPL-3.0-or-later
# biomeOS dependency policy — enforced by `cargo deny check`
[advisories]
# NOTE: bincode v1 unmaintained (RUSTSEC-2025-0141) — pulled in transitively by tarpc (serde-transport-bincode) and tokio-serde (bincode feature); neither supports bincode v2 yet. Upgrade when upstream does.
ignore = ["RUSTSEC-2025-0141"]
[licenses]
allow = [
"AGPL-3.0-only",
"AGPL-3.0-or-later",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"ISC",
"MIT",
"Unicode-3.0",
]
confidence-threshold = 0.8
[licenses.private]
ignore = false
[bans]
multiple-versions = "warn"
wildcards = "deny"
deny = [
# C-binding crates banned for ecoBin compliance.
# Expanded from the 14-crate ban list used by groundSpring, wetSpring, and healthSpring.
{ crate = "openssl-sys", wrappers = [] },
{ crate = "openssl", wrappers = [] },
{ crate = "native-tls", wrappers = [] },
{ crate = "ring", wrappers = [] },
{ crate = "aws-lc-sys", wrappers = [] },
{ crate = "aws-lc-rs", wrappers = [] },
{ crate = "zstd-sys", wrappers = [] },
{ crate = "dirs-sys", wrappers = [] },
{ crate = "libsqlite3-sys", wrappers = [] },
{ crate = "libz-sys", wrappers = [] },
{ crate = "bzip2-sys", wrappers = [] },
{ crate = "curl-sys", wrappers = [] },
{ crate = "libgit2-sys", wrappers = [] },
{ crate = "libssh2-sys", wrappers = [] },
{ crate = "users", wrappers = [] }, # RUSTSEC-2024-0399 + RUSTSEC-2025-0040: unmaintained, use rustix
{ crate = "unsafe-libyaml", wrappers = [] }, # C libyaml binding; replaced by pure-Rust serde-saphyr (v3.15)
]
[sources]
unknown-registry = "deny"
unknown-git = "warn"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []