afm-rs

Crates.ioafm-rs
lib.rsafm-rs
version0.1.1
sourcesrc
created_at2020-12-29 17:36:40.94369
updated_at2020-12-29 22:15:59.521144
descriptionA validator for greek tax identification number (ΑΦΜ)
homepage
repositoryhttps://github.com/zoispag/afm-rs
max_upload_size
id328856
size6,038
Zois Pagoulatos (zoispag)

documentation

README

afm-rs

CI

A validator for greek tax identification number (ΑΦΜ)

Usage

Add afm-rs under [dependencies] in your Cargo.toml:

[dependencies]
afm-rs = "0.1.1"

Use the validator:

use afm_rs;

// An invalid AFM
let (is_valid, err) = afm::validate("123456789");
assert!(!is_valid);
println!("{}", err);

// A valid AFM
let (is_valid, err) = afm::validate("997788278");
assert!(is_valid);
assert_eq!("", err)
Commit count: 3

cargo fmt