wordle-analyzer/Cargo.toml

26 lines
599 B
TOML
Raw Normal View History

2024-03-20 16:04:33 +01:00
[package]
2024-03-20 16:38:22 +01:00
name = "wordle-analyzer"
2024-03-20 16:04:33 +01:00
version = "0.1.0"
edition = "2021"
publish = false
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT"
2024-03-20 16:38:22 +01:00
description = "Play, Analyze and Benchmark Wordle / Wordle Strategies"
2024-03-20 16:04:33 +01:00
readme = "README.md"
2024-03-20 16:38:22 +01:00
homepage = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
repository = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
keywords = ["wordle", "benchmark"]
2024-03-20 17:04:54 +01:00
default-run = "wordle"
2024-03-20 16:04:33 +01:00
2024-03-20 17:04:54 +01:00
[features]
default = ["game", "bench"]
game = []
bench = []
2024-03-20 16:04:33 +01:00
[dependencies]
2024-03-20 17:04:54 +01:00
[[bin]]
name = "cliwordle"
path = "src/bin/cliwordle.rs"
required-features = ["game"]