Fork of https://github.com/Ethan1225/id-card-rust
Chinese person identification card number verification, including region code, birthday, and check code. Chinese unified social credit code verification, including check code only.
APL 2.0, see LICENSE file.
In Cargo.toml add
toml
[dependencies]
cn-id-card="0.1"
Then re-run cargo build
. That fetches the dependencies and builds
the code.
```rust extern crate cnidcard;
fn main() { println!("{}", cnidcard::validate("440524188001010014", true));//outputs: true println!("{}", cnidcard::validate_code("12100000400009880K", true));//outputs: true }
```
Test changes before commitment.(Install nightly if it haven't been installed: rustup install nightly) ```shell cargo clean cargo fmt --all -- --check cargo build cargo +nightly bench cargo test
```