d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
Web Frontend / Deploy to Cloudflare (push) Waiting to run
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
# cargo-deny configuration for CodeWhale
|
|
# https://embarkstudios.github.io/cargo-deny/
|
|
|
|
[graph]
|
|
# Scan all workspace members with all features
|
|
all-features = true
|
|
|
|
[advisories]
|
|
# Deny unmaintained and unsound crates
|
|
unmaintained = "all"
|
|
unsound = "all"
|
|
# Ignore specific advisories (known issues in dependencies)
|
|
ignore = [
|
|
"RUSTSEC-2024-0436", # paste unmaintained - no safe upgrade
|
|
"RUSTSEC-2026-0192", # ttf-parser unmaintained - no safe upgrade
|
|
"RUSTSEC-2024-0388", # derivative unmaintained - transitive via starlark
|
|
"RUSTSEC-2025-0057", # fxhash unmaintained - transitive via starlark
|
|
]
|
|
|
|
[bans]
|
|
# Deny multiple versions of the same crate
|
|
multiple-versions = "warn"
|
|
# Deny wildcard version requirements
|
|
wildcards = "deny"
|
|
|
|
[sources]
|
|
# Deny unknown registries and git sources
|
|
unknown-registry = "deny"
|
|
unknown-git = "deny"
|
|
# Allow only crates.io
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
# Allow git sources used by the project (add as needed)
|
|
allow-git = []
|
|
|
|
[licenses]
|
|
# Confidence threshold for license inference from text
|
|
confidence-threshold = 0.93
|
|
# Allowed licenses (MIT for CodeWhale, plus common transitive deps)
|
|
allow = [
|
|
"MIT",
|
|
"MIT-0",
|
|
"Apache-2.0",
|
|
"Apache-2.0 WITH LLVM-exception",
|
|
"ISC",
|
|
"Unicode-3.0",
|
|
"Unicode-DFS-2016",
|
|
"Zlib",
|
|
"BSD-2-Clause",
|
|
"BSD-3-Clause",
|
|
"0BSD",
|
|
"MPL-2.0",
|
|
"CC0-1.0",
|
|
"BSL-1.0",
|
|
"CDLA-Permissive-2.0",
|
|
]
|
|
# License exceptions for specific crates if needed
|
|
exceptions = []
|