pessoa 0.1.4

Library for generating fake identities/user data in different languages. The crate is named after the Portuguese word for 'person'.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Pessoa

A crate to generate fake user profile data, ideal for testing purposes.

Named after the Portuguese word for "person."

## Example

```rust
// build a new identity with defaults
let identity = Identity::new();

// equivalent to `Identity::new()`
let identity = Identity::default();

// build a new identity with a specific locale
let identity = Identity::with_locale(Locale::PtPt);
```