Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrelmlins/cpf_cnpj
Validador de CPF e CNPJ para Rust.
https://github.com/andrelmlins/cpf_cnpj
cnpj cpf validacao validate
Last synced: 2 months ago
JSON representation
Validador de CPF e CNPJ para Rust.
- Host: GitHub
- URL: https://github.com/andrelmlins/cpf_cnpj
- Owner: andrelmlins
- License: mit
- Created: 2020-06-23T15:42:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-26T01:55:29.000Z (over 4 years ago)
- Last Synced: 2024-09-15T03:48:52.327Z (4 months ago)
- Topics: cnpj, cpf, validacao, validate
- Language: Rust
- Homepage:
- Size: 16.6 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cpf_cnpj
Validador e Gerador de CPF e CNPJ para Rust.
[![Crates.io](https://img.shields.io/crates/v/cpf_cnpj)](https://crates.io/crates/cpf_cnpj) • [![Crates.io](https://img.shields.io/crates/l/cpf_cnpj)](https://github.com/andrelmlins/cpf_cnpj/blob/master/LICENSE) • [![Build Status](https://travis-ci.com/andrelmlins/cpf_cnpj.svg?branch=master)](https://travis-ci.com/andrelmlins/cpf_cnpj) • [![API](https://docs.rs/cpf_cnpj/badge.svg)](https://docs.rs/cpf_cnpj)
Alguns características importantes devem ser destacadas nessa biblioteca:
- Analisa repetições de dígitos como `111.111.111-11` ou `000.000.000-00`.
- Ignora caracteres especiais.
- Valida antecipadamente a quantidade de dígitos numéricos## Instalação
Adicione essa dependência no seu `Cargo.toml`:
```toml
[dependencies]
cpf_cnpj = "0.2"
```## Uso básico
Abaixo uma forma simples de como utilizar essa biblioteca:
```rust
extern crate cpf_cnpj;use cpf_cnpj::cpf;
use cpf_cnpj::cnpj;cpf::validate("255.248.930-33");
// truecpf::validate("25524893033");
// truecpf::validate("99999999999");
// falsecnpj::validate("36.002.518/0001-01");
// truecnpj::validate("36002518000101");
// truecpf::generate();
// 25524893033cnpj::generate();
// 76071265000142
```## Licença
**cpf_cnpj** é um software Open Source [licenciado pelo MIT](https://github.com/andrelmlins/cpf_cnpj/blob/master/LICENSE).