regit-identifiers 1.0.1

Securities identifier validation in pure Rust — ISIN, CUSIP, SEDOL, LEI, BIC, MIC, FIGI, CFI and national numbers. Check-digit algorithms, parsing, and conversion. Zero dependencies, no_std, no alloc.
Documentation
# cargo-deny configuration for regit-identifiers (v2 format)
# https://embarkstudios.github.io/cargo-deny/
#
# regit-identifiers has zero runtime dependencies. This file is a standing
# guard: it fails CI the moment a dependency (runtime or dev) is added that
# carries an advisory, a non-allowed licence, or an unknown source.

[advisories]
ignore = []

[licenses]
# The published crate has zero runtime dependencies, so the licence graph of
# the shipped artefact is the crate itself (Apache-2.0). The remaining entries
# cover the permissive licences in the *development* dependency tree
# (`proptest`, `criterion`) — none copyleft, none shipped to users. cargo-deny
# will flag the licence of the first runtime dependency ever added.
allow = [
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "MIT",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-3.0",
    "Zlib",
]

[bans]
multiple-versions = "warn"
wildcards         = "deny"

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