[package]
edition = "2024"
name = "scramble-gen"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library with accompanying cli utility that generates practice scrambles for use in a future cube timer."
readme = "README.md"
license-file = "LICENSE"
[lib]
name = "scramble_gen"
path = "src/lib.rs"
[[bin]]
name = "scramble-gen"
path = "src/main.rs"
[[test]]
name = "redundancy_tests"
path = "tests/redundancy_tests.rs"
[[test]]
name = "scramble_tests"
path = "tests/scramble_tests.rs"
[dependencies.rand]
version = "0.9.1"
features = ["std"]
[dev-dependencies.rstest]
version = "0.25.0"