iban_validate
This is a small crate that is able to validate an IBAN account number. It has many tests and uses proptest for fuzzing.
Usage
The crate can be found on crates.io. To use this crate, just add it as an dependency:
[dependencies]
iban_validate = "3"
Functionality
This crate provides an easy way to validate an IBAN (International Bank Account Number). To do
so, you can use the function parse(). This will check the IBAN rules
as well as the BBAN structure. The provided Iban structure provides many methods
to easy the handling of an IBAN. Many of these methods are provided via the IbanLike
trait.
When BBAN parsing fails, the error type ParseIbanError provides useful
information about what went wrong. Additionally, the error contains BaseIban,
which can still be used to access useful information.
Example
The following example does a full validation of the IBAN and BBAN format.
use *;
let account = "DE44500105175407324931".?;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
Features
- serde: Enable
serdesupport for [Iban] and [BaseIban].
Documentation
The full documentation is available at docs.rs.
Contributing
If you experience issues with this crate or want to help, please look here.
Stability
This crate has the goal of being usable on the latest stable version of Rust. Its minimum version is documented and tested against, although no extra effort is taken to support earlier versions. The minimum version of Rust can be increased, although this corresponds to a new major release. The crate does not use unsafe itself, although dependencies might. Breaking changes are not avoided in new major versions, although these will always be well-documented and the process of upgrading made clear.
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.