Add faker to your Cargo.toml
toml
[dependencies]
faker = "*"
rust
let faker = Faker::new("us");
faker.name.name(); // "Christophe Bartell"
rust
faker.name.full_name(); // "Tyshawn Johns Sr."
faker.name.first_name(); // "Kaci"
faker.name.last_name(); // "Ernser"
faker.name.prefix(); // "Mr."
faker.name.suffix(); // "IV"
rust
faker.address.city_prefix(); // "West"
faker.address.city_suffix(); // "mouth"
faker.address.street_suffix(); // "Landing"
faker.address.state(); // "New Jersey"
faker.address.time_zone(); // "Europe/Helsinki"
faker.address.building_number(); // "853"
faker.address.zip(); // "00531"
faker.address.secondary_address(); // "Apt. 329"
faker.address.city(); // "North Rasheedview"
faker.address.street_name(); // "Haag Station"
faker.address.street_address(); // "2814 Shannon Roads"
faker.address.state_abbr(); // "AR"
faker.address.country(); // "Cyprus"
faker.address.latitude(); // "87.099724"
faker.address.longitude(); // "-58.324116"
rust
faker.lorem.word(); // "eligendi"
faker.lorem.words(5) // ["molestiae", "et", "non", "qui", "nisi"]
faker.lorem.sentence(4, 6); // "quia itaque veritatis ea voluptatibus"
faker.lorem.sentences(3);
//["vero labore nemo soluta commodi sequi consequatur sed", "cupiditate quo officiis perspiciatis vel reiciendis atque veniam", "facere consequuntur ut voluptas quos veniam aut id dolores"]
faker.lorem.paragraph(3);
//"et et velit neque et nostrum vel dolorem blanditiis ut occaecati officia odit ratione totam voluptatem et quam quo amet laudantium aut porro aut esse pariatur suscipit et doloremque ipsam rerum qui cupiditate tempore maiores voluptas"
faker.lorem.paragraphs(2);
//[dolorem iste vitae doloribus ea vel nulla qui aliquam et dolorem eius rem voluptas deleniti voluptatem occaecati sint voluptatem fuga non ducimus voluptas eaque quia dicta nobis vel voluptatem id suscipit inventore et excepturi earum mollitia rem tempora deserunt laborum nobis, eum qui accusantium et incidunt ad provident laboriosam similique ut nulla qui qui atque et iste rerum incidunt quia voluptas nobis nemo rerum assumenda voluptate non qui mollitia molestiae nesciunt tempore repellat ipsam natus cupiditate]
rust
faker.number.number(10); // "1968353479"
faker.number.digit(); // "1"
rust
//returns a random number in a random format
faker.phone_number.phone_number(); // "397.693.1309"
//takes a format and returns a number
faker.phone_number.phone_number_format("1-NXX-NXX-XXXX"); // "1-397-693-1309"
//returns a random phone format
faker.phone_number.phone_formats(); // 1-NXX-NXX-XXXX"
Phone numbers may be in any of the following formats: * "NXX-NXX-XXXX" * "(NXX)NXX-XXXX" * "NXX.NXX.XXXX" * "1-NXX-NXX-XXXX" * "NXX-NXX-XXXX xNXX" * "(NXX)NXX-XXXX xNXX" * "1-NXX-NXX-XXXX xNXX" * "NXX.NXX.XXXX xNXX" * "NXX-NXX-XXXX xNXXX" * "(NXX)NXX-XXXX xNXXX" * "1-NXX-NXX-XXXX xNXXX" * "NXX.NXX.XXXX xNXXX" * "NXX-NXX-XXXX xNXXXX" * "(NXX)NXX-NXX xNXXXX" * "1-NXX-NXX-XXXX xNXXXX" * "NXX.NXX.XXXX xNXXXX"
rust
faker.image.avatar("my-own-slug", "50x50", "bmp") // "http://robohash.org/my-own-slug.bmp?size=50x50"
faker.image.category(100, 100, "cats") // "http://lorempixel.com/100/100/cats"
// returns an image with a random category
faker.image.image(100, 100) // "http://lorempixel.com/100/100/business"
cargo test
The MIT License
Copyright (c) 2014 Mordy Tikotzky, Seth Pollack
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.