faker-rust 0.1.0

A high-performance, locale-aware fake data generator for Rust
Documentation
1
2
3
4
5
6
use faker_rust::address;

fn main() {
    println!("Testing address::city() placeholder resolution");
    println!("city(): {}", address::city());
}