dbnexus 0.1.3

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

[advisories]
yanked = "warn"
unmaintained = "transitive"
ignore = [
    # rsa 漏洞来自 sqlx-mysql,仅在启用 mysql 特性时影响
    "RUSTSEC-2023-0071",
    # unmaintained 警告(这些是上游依赖,无法直接解决)
    "RUSTSEC-2025-0052",  # async-std (sqlx 依赖)
    "RUSTSEC-2024-0384",  # instant (sqlx 依赖)
    "RUSTSEC-2025-0123",  # opentelemetry-jaeger (tracing 特性)
    "RUSTSEC-2024-0387",  # opentelemetry_api (tracing 特性)
]

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

[bans]
wildcards = "allow"

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