scissors 0.2.0

Editor-based content approval, git-commit style
Documentation
# cargo-deny configuration. See https://embarkstudios.github.io/cargo-deny/
# Targeting cargo-deny 0.19+ (the v0.19 release removed the vulnerability/
# unmaintained/unsound/notice keys in favour of a default-deny posture).

[graph]
all-features = true

[advisories]
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "deny"
ignore = []

[licenses]
# Allowlist of permissive/compatible licenses. Anything outside this fails.
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-3.0",
    "Unicode-DFS-2016",
    "Zlib",
    "CC0-1.0",
    "MPL-2.0",
]
confidence-threshold = 0.9

[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"]