random_password_generator

Crates.iorandom_password_generator
lib.rsrandom_password_generator
version0.1.0
sourcesrc
created_at2024-06-19 23:28:47.017848
updated_at2024-06-19 23:28:47.017848
descriptionRust library to generate random passwords, you can define whether the password will have alphabetical, numeric or special characters.
homepage
repository
max_upload_size
id1277437
size7,089
Alejandro Castellanos (alejandrocastellanos)

documentation

README

random_password_generator

Rust library to generate random passwords, you can define whether the password will have alphabetical, numeric or special characters.

Installation

To use random_password_generator in your Rust project, add it as a dependency in your Cargo.toml:

[dependencies]
random_password_generator = "0.1.0"

```rust
use random_password_generator::generate_password;

fn main() {
    let random_letter = generate_password(true, true,true, 5);
    println!("new password generated: {}", random_letter)
}
Commit count: 0

cargo fmt