[package]
edition = "2021"
name = "rand_tool"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A formidable random number generator capable of producing passwords,
service ports, and UUIDs, alongside the ability to encode and decode Base64.
"""
readme = "README.md"
license = "MIT"
repository = "https://github.com/maifuwa/rand_tool"
[lib]
name = "rand_tool"
path = "src/lib.rs"
[[bin]]
name = "rand_tool"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.passwords]
version = "3"
[dependencies.rand]
version = "0.10.0"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"