pipechecker 0.2.10

CI/CD Pipeline Auditor - Catch errors before you push
Documentation
# cargo-deny configuration for pipechecker
# https://embarkstudios.github.io/cargo-deny/

[graph]
targets = []
all-features = true
exclude = []

[advisories]
db-path = "~/.cargo/advisory-db"
ignore = []
yanked = "deny"

[bans]
multiple-versions = "warn"
wildcards = "allow"
skip = []

[licenses]
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "MPL-2.0",
    "Unicode-3.0",
    "Unlicense",
    "Zlib",
    "OpenSSL",
    "CC0-1.0",
    "CDLA-Permissive-2.0",
]
confidence-threshold = 0.8

[[licenses.clarify]]
name = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]

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