#random #codes #generate #unique #generator #length #tool-quarry

tq-code-generator-core

The Rust library developed by ToolQuarry that Secure, efficient, and easy to use, it's the ideal solution for generating unique codes of all kinds

2 releases

0.1.1 Apr 11, 2023
0.1.0 Apr 7, 2023

#2014 in Development tools

32 downloads per month

MIT license

3KB

TQ Code Generator Core

TQ Code Generator Core is a Rust library for generating random codes of varying lengths. It was created to power the code generation tools at ToolQuarry, but it can be used in any Rust project that needs to generate unique codes.

Installation

Add tq-code-generator-core to your project's Cargo.toml file:

[dependencies]
tq-code-generator-core = "0.1.0"

Usage

Here's an example of how to use tq-code-generator-core to generate a random code:

use tq_code_generator_core::generate_random_code;

fn main() {
    let code = generate_random_code(8);
    println!("{}", code);
}

License

This project is licensed under the MIT License - see the LICENSE file for details.

Dependencies

~310KB