inklog 0.2.0

Enterprise-grade Rust logging infrastructure
Documentation
# cargo-deny 配置
[advisories]
db-urls = ["https://github.com/rustsec/advisory-db"]
# 忽略非关键的安全警告(这些是 transitive 依赖的问题)
ignore = [
    # 历史死代码 ignore 已清理(2026-07)— cargo-deny advisory-not-detected:
    #   RUSTSEC-2024-0436 (paste) — dev dependency 已移除
    #   RUSTSEC-2026-0173 (proc-macro-error2) — 当前 cargo-deny db 未匹配(advisory 范围不覆盖)
]

[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 = "deny"
highlight = "all"

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