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 配置文件
# 文档: https://embarkstudios.github.io/cargo-deny/
[]
= "warn"
= "transitive"
= [
# proc-macro-error2 unmaintained — transitive via sea-orm-macros (sea-bae)
# 无安全升级路径,等待 sea-orm 生态迁移
"RUSTSEC-2026-0173",
# rustls-pemfile unmaintained — transitive via bollard (testcontainers)
# 无安全升级路径,仅影响开发/测试依赖
"RUSTSEC-2025-0134",
# tokio-tar PAX header vulnerability — transitive via testcontainers
# 无安全升级路径,仅影响开发/测试依赖
"RUSTSEC-2025-0111",
# rsa Marvin Attack — transitive via jsonwebtoken (authentication feature)
# 等待 jsonwebtoken 10.x 迁移到 rsa 0.10+;仅在启用 authentication 特性时引入
# 缓解措施:项目不对外暴露原始 RSA 签名接口,仅消费 JWT 库的封装 API
"RUSTSEC-2023-0071",
]
[]
= [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Zlib",
"Unicode-DFS-2016",
"Unicode-3.0",
"CDLA-Permissive-2.0",
"BSL-1.0",
]
[]
= "allow"
[]
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]
= []