inklog 0.1.2

Enterprise-grade Rust logging infrastructure
Documentation
# cargo-deny 配置
[advisories]
db-urls = ["https://github.com/rustsec/advisory-db"]
# 忽略非关键的安全警告(这些是 transitive 依赖的问题)
ignore = [
    "RUSTSEC-2024-0436", # paste unmaintained (dev dependency)
    "RUSTSEC-2026-0173", # proc-macro-error2 unmaintained (transitive via dbnexus-macros/sea-bae, no safe upgrade available)
]

[licenses]
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "BSL-1.0",
    "CDLA-Permissive-2.0",
    "ISC",
    "MIT-0",
    "MPL-2.0",
    "OpenSSL",
    "Zlib",        # for foldhash (hashbrown dependency)
    "CC0-1.0",     # for tiny-keccak (arrow/parquet transitive dependency)
    "Unicode-3.0", # for icu* crates (url/reqwest dependency)
]
confidence-threshold = 0.8

[bans]
multiple-versions = "warn"
wildcards = "allow"
highlight = "all"

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