28 lines
573 B
TOML
28 lines
573 B
TOML
[package]
|
|
name = "wordle-solver"
|
|
description = "A wordle-solver utility."
|
|
publish = false
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "wordle_solver"
|
|
path = "src/lib/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "wordle-solver"
|
|
path = "src/app/wordle_solver.rs"
|
|
|
|
[[bin]]
|
|
name = "wordle-simulation"
|
|
path = "src/app/wordle_simulation.rs"
|
|
|
|
[dependencies]
|
|
colored = "3.1.1"
|
|
derive_more = { version = "2.1.1", features = [ "debug", "display" ] }
|
|
indicatif = { version = "0.18.6", features = ["rayon"] }
|
|
rand = "0.10.2"
|
|
rayon = "1.12.0"
|
|
tabular = { version = "0.2.0", features = ["ansi-cell"] }
|