[package]
edition = "2021"
rust-version = "1.81"
name = "iso7064"
version = "0.1.0"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ISO 7064 MOD 97-10 check-character computation and validation (used by LEI, IBAN, ...). A faithful port of the iso-7064 npm package. Zero deps, no_std."
homepage = "https://github.com/trananhtung/iso7064"
documentation = "https://docs.rs/iso7064"
readme = "README.md"
keywords = [
"iso7064",
"checksum",
"mod97",
"lei",
"iban",
]
categories = [
"algorithms",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/iso7064"
[lib]
name = "iso7064"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"