[package] name = "iban_validate" # Note: When updating, also update in lib.rs and README.md version = "5.0.1" authors = ["Thomas den Hollander "] description = "A small crate to verify IBAN account numbers." repository = "https://github.com/ThomasdenH/iban_check" license = "MIT OR Apache-2.0" readme = "../README.md" keywords = ["iban", "iban-validator"] categories = ["parsing"] edition = "2021" include = ["src/**/*", "README.md"] [badges] maintenance = { status = "passively-maintained" } [lib] name = "iban" path = "src/lib.rs" [features] default = [] # Builds rustdoc links, but requires nightly intra_rustdoc_links = [] [dependencies.serde] version = "1" optional = true default-features = false features = ["derive"] [dependencies.arrayvec] version = "0.7" default-features = false [dev-dependencies] proptest = "1" static_assertions = "1" serde_test = "1" criterion = "0.3" [[bench]] name = "iban_benchmark" path = "benches/iban_benchmark.rs" harness = false