3 releases

Uses old Rust 2015

0.1.2 Dec 24, 2015
0.1.1 Dec 24, 2015
0.1.0 Dec 24, 2015

#1490 in Development tools

Download history 372/week @ 2023-12-01 412/week @ 2023-12-08 48/week @ 2023-12-15 77/week @ 2023-12-22 22/week @ 2023-12-29 5/week @ 2024-01-05 49/week @ 2024-01-12 237/week @ 2024-01-19 53/week @ 2024-01-26 14/week @ 2024-02-02 138/week @ 2024-02-09 315/week @ 2024-02-16 254/week @ 2024-02-23 496/week @ 2024-03-01 99/week @ 2024-03-08 83/week @ 2024-03-15

961 downloads per month
Used in userman-auth

MIT license

11KB
86 lines

rust-haikunator

Build Status Coverage Status

Generate Heroku-like random names to use in your Rust applications.

Installation

Add to your Config.toml dependencies

[dependencies]

haikunator = "0.1.0"

Usage

Include the crate; create a Haikunator instance; then call haikunate.

extern crate haikunator;

use haikunator::{Haikunator};

fn main() {
    // normal usage
    let haikunator = Haikunator::default();    
    println!("{}", haikunator.haikunate()); // => fancy-cloud-7181

    // custom length (default=4)
    let mut haikunator = Haikunator::default();
    haikunator.token_length = 9;
    println!("{}", haikunator.haikunate()); // => rapid-mode-572457286

    // use hex instead of numbers
    let mut haikunator = Haikunator::default();
    haikunator.token_hex = true;
    println!("{}", haikunator.haikunate()); // => "misty-boat-bd01"

    // use custom chars instead of numbers/hex
    // unicode works too
    let mut haikunator = Haikunator::default();
    haikunator.token_chars = "HAIKUNATE忠犬ハチ公";
    println!("{}", haikunator.haikunate()); // => "divine-tiger-NKKチ"

    // don't include a token
    let mut haikunator = Haikunator::default();
    haikunator.token_length = 0;
    println!("{}", haikunator.haikunate()); // => "lingering-term"

    // use a different delimiter
    let mut haikunator = Haikunator::default();
    haikunator.delimiter = ":";
    println!("{}", haikunator.haikunate()); // => "young:cell:5426"

    // no token, space delimiter
    let mut haikunator = Haikunator::default();
    haikunator.token_length = 0;
    haikunator.delimiter = " ";
    println!("{}", haikunator.haikunate()); // => "wandering coke"

    // no token, empty delimiter
    let mut haikunator = Haikunator::default();
    haikunator.token_length = 0;
    haikunator.delimiter = "";
    println!("{}", haikunator.haikunate()); // => "freetooth"

    // custom nouns and/or adjectives
    let haikunator = Haikunator {
        adjectives: &["dandy", "froody", "happy"],
        nouns: &["whale", "towel", "earth"],
        delimiter: "-",
        token_length: 3,
        token_hex: false,
        token_chars: "24",
    };
    println!("{}", haikunator.haikunate()); // => "happy-earth-444"
}

See the test files at tests/lib.rs for more examples.

Options

The following options are available:

pub struct Haikunator<'a> {
    pub adjectives: &'a [&'a str],
    pub nouns: &'a [&'a str],
    pub delimiter: &'a str,
    pub token_length: usize,
    pub token_hex: bool,
    pub token_chars: &'a str,
}

Note: If token_hex is true, the value of token_chars is ignored.

Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help:

Other Languages

Haikunator is also available in other languages. Check them out:

License

rust-haikunator is available under the MIT License.

Dependencies

~315–540KB