This program is faker by random-select and support multi locale. Now, support Japan only. So, if you want to support other locale, please pull request data of the locale. You can generate formatted dummy data as xxxx. When it is String, formatter is "xxxx". When it is not String, formatter is xxxx.
MIT
as Library
// Cargo.toml
fakes-gen = "version"
as CLI for latest version
cargo install --git https://github.com/ogata-k/fakes-gen-cli --branch master
or get from releases
// s is user data quated by ".
FixedString(s)
FixedNotString(s)
// list is user data such the formed: ["s1", "s2", "s3"]
SelectString(list)
SelectNotString(list)
// unsigned integer n satisfied with from<=n<=to,
// you can generate dummy as joined n-data by space.
Word
Words(from, to)
Sentence
Sentences(from, to)
Paragraph
Paragraphs(from, to)
// When use with_furigana, you set true to furigana parameter.
FirstName(with_furigana)
FirstNameFurigana
LastName(with_furigana)
LastNameFurigana
FullName(with_furigana)
FullNameFurigana
// You can use from and to paramator such as Lorem.
// They are all not-String whithout Ascii.
Integer
IntegerRange(from, to)
Float
FloatRange(from, to)
// Ascii chars without space
Ascii(from, to)
Boolean
// You can use from and to paramator such as Lorem.
// Their data is sensitive, so I pay attention dummy data to be as possible as safety.
Email
UserName
Password(from, to)
CreditCard
URL
IPv4
IPv6
RGB
RGBA
UserAgent
StatusCode
CompanySuffix
CompanyName
Industry
Building
StreetName
CityName
StateName
CountryCode
CountryName
TimeZone
Address
// When you use number formatted as xxx-xxxx-xxx, set true to hyphen parameter.
ZipCode(hyphen)
DomesticPhoneNumber(hyphen)
Latitude
Longitude
// format-str: https://docs.rs/chrono/0.4.9/chrono/format/strftime/index.html
// String is format. default is "%Y-%m-%d %H:%I:%M"'s sub-format.
// But, When Time(Date, DateTime), use only Time(Date, Time/Date)-formatter.
// ex. "219-11-02 21:09:31"
Time(format)
Date(format)
DateTime(format)
FileName
Extension