dbnexus 0.3.0

An enterprise-grade database abstraction layer for Rust with built-in permission control and connection pooling
Documentation
# cargo-deny 配置文件
# 文档: https://embarkstudios.github.io/cargo-deny/

[advisories]
yanked = "warn"
unmaintained = "transitive"
ignore = [
    # 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",
]

[licenses]
allow = [
    "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",
]

[bans]
wildcards = "allow"

[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []