Files
attune/deny.toml
David Culbreth 57fa3bf7cf
Some checks failed
CI / Rustfmt (push) Failing after 56s
CI / Clippy (push) Successful in 2m4s
CI / Web Blocking Checks (push) Successful in 50s
CI / Cargo Audit & Deny (push) Successful in 2m2s
CI / Security Blocking Checks (push) Successful in 10s
CI / Security Advisory Checks (push) Successful in 41s
Publish Images And Chart / Resolve Publish Metadata (push) Successful in 3s
Publish Images And Chart / Publish init-packs (push) Failing after 13s
Publish Images And Chart / Publish init-user (push) Failing after 11s
CI / Web Advisory Checks (push) Successful in 1m38s
Publish Images And Chart / Publish migrations (push) Failing after 11s
Publish Images And Chart / Publish web (push) Failing after 10s
Publish Images And Chart / Publish worker (push) Failing after 10s
Publish Images And Chart / Publish sensor (push) Failing after 31s
Publish Images And Chart / Publish api (push) Failing after 10s
Publish Images And Chart / Publish notifier (push) Failing after 11s
Publish Images And Chart / Publish executor (push) Failing after 31s
Publish Images And Chart / Publish Helm Chart (push) Has been skipped
CI / Tests (push) Successful in 1h34m2s
added oidc adapter
2026-03-18 16:35:21 -05:00

53 lines
1.0 KiB
TOML

[graph]
all-features = true
[advisories]
version = 2
yanked = "deny"
ignore = [
# jsonwebtoken's RSA support is required for verifying external RS256 OIDC ID tokens.
# No patched rsa release is available yet for RUSTSEC-2023-0071, so tolerate it until
# the upstream ecosystem provides a safe replacement or fix.
"RUSTSEC-2023-0071",
]
[licenses]
version = 2
confidence-threshold = 0.9
allow = [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
"CC0-1.0",
"OpenSSL",
"BSL-1.0",
"MIT-0",
"CDLA-Permissive-2.0",
]
[bans]
multiple-versions = "warn"
wildcards = "allow"
highlight = "all"
deny = []
skip = [
"winnow@0.6.26",
"winnow@0.7.15",
"windows_x86_64_msvc@0.42.2",
"windows_x86_64_msvc@0.48.5",
"windows_x86_64_msvc@0.52.6",
"windows_x86_64_msvc@0.53.1",
]
skip-tree = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []