tq-code-generator-core

Crates.iotq-code-generator-core
lib.rstq-code-generator-core
version0.1.1
sourcesrc
created_at2023-04-07 07:24:44.757909
updated_at2023-04-11 09:42:15.271178
descriptionThe Rust library developed by ToolQuarry that Secure, efficient, and easy to use, it's the ideal solution for generating unique codes of all kinds.
homepagehttps://github.com/toolquarry/tq-code-generator-core
repositoryhttps://github.com/toolquarry/tq-code-generator-core
max_upload_size
id832810
size4,481
Ujang Sarutobi (adamcanray)

documentation

https://github.com/toolquarry/tq-code-generator-core

README

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.

Commit count: 4

cargo fmt