generated from PlexSheep/rs-base
36 lines
820 B
TOML
36 lines
820 B
TOML
[package]
|
|
name = "wordle-analyzer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
authors = ["Christoph J. Scherr <software@cscherr.de>"]
|
|
license = "MIT"
|
|
description = "Play, Analyze and Benchmark Wordle / Wordle Strategies"
|
|
readme = "README.md"
|
|
homepage = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
|
|
repository = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
|
|
keywords = ["wordle", "benchmark"]
|
|
default-run = "wordlec"
|
|
|
|
[features]
|
|
default = ["game", "bench", "tui", "solvers"]
|
|
game = []
|
|
solvers = []
|
|
tui = ["game"]
|
|
bench = []
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.81"
|
|
clap = { version = "4.5.3", features = ["derive"] }
|
|
libpt = "0.4.2"
|
|
|
|
[[bin]]
|
|
name = "wordlec"
|
|
path = "src/bin/game/cli.rs"
|
|
required-features = ["game"]
|
|
|
|
[[bin]]
|
|
name = "wordlet"
|
|
path = "src/bin/game/tui.rs"
|
|
required-features = ["tui", "game"]
|