├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── cnpj.rs ├── cpf.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrelmlins/cpf_cnpj/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrelmlins/cpf_cnpj/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrelmlins/cpf_cnpj/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrelmlins/cpf_cnpj/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrelmlins/cpf_cnpj/HEAD/README.md -------------------------------------------------------------------------------- /src/cnpj.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrelmlins/cpf_cnpj/HEAD/src/cnpj.rs -------------------------------------------------------------------------------- /src/cpf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrelmlins/cpf_cnpj/HEAD/src/cpf.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrelmlins/cpf_cnpj/HEAD/src/lib.rs --------------------------------------------------------------------------------