person_registration 0.1.2

Person registration for Brazil documents
Documentation
  • Coverage
  • 0%
    0 out of 6 items documented0 out of 5 items with examples
  • Size
  • Source code size: 8.83 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 524.76 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ktfth

Person Registration

Description

On Brazil we have two main documents to describe a company or a physical person registration, used widely for common ways like buy, register on another services and so on. This tool help you to generate this documents to test your applications.

Installation

[sudo] cargo install person_registration

or add to Cargo.toml

[dependencies]
person_registration = "*"

Usage

To generate documents on cli, you can use the commands below:

CLI

person_registration --physical 5
person_registration --juridic 5
person_registration --general 5
person_registration --misc 5

API

Or just calling on your code:

use person_registration::{Gen, Person, Juridic, General};

println!("{}", Person::generate());
println!("{}", Juridic::generate());
println!("{}", General::generate());

That's it, enjoy and contributions are welcome.