[package]
edition = "2024"
rust-version = "1.85"
name = "regit-identifiers"
version = "1.0.1"
authors = ["Nicolas Koenig <nicolas.koenig@regit.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "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."
homepage = "https://www.regit.io"
readme = "README.md"
keywords = [
"isin",
"cusip",
"lei",
"securities",
"no-std",
]
categories = [
"finance",
"no-std::no-alloc",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/org-regit-io/regit-identifiers"
[features]
default = ["mic-registry"]
mic-registry = []
[lib]
name = "regit_identifiers"
path = "src/lib.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "identifiers"
path = "benches/identifiers.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[lints.clippy.pedantic]
level = "warn"
priority = -1