generated from PlexSheep/rs-base
info
cargo devel CI / cargo CI (push) Successful in 24s
Details
cargo devel CI / cargo CI (push) Successful in 24s
Details
This commit is contained in:
parent
b98760c9cb
commit
6496fbb3bc
10
Cargo.toml
10
Cargo.toml
|
@ -1,15 +1,15 @@
|
||||||
[package]
|
[package]
|
||||||
name = "template"
|
name = "wordle-analyzer"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
authors = ["Christoph J. Scherr <software@cscherr.de>"]
|
authors = ["Christoph J. Scherr <software@cscherr.de>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "No description yet"
|
description = "Play, Analyze and Benchmark Wordle / Wordle Strategies"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
homepage = "https://git.cscherr.de/PlexSheep/rs-base"
|
homepage = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
|
||||||
repository = "https://git.cscherr.de/PlexSheep/rs-base"
|
repository = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
|
||||||
keywords = ["template"]
|
keywords = ["wordle", "benchmark"]
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
18
README.md
18
README.md
|
@ -1,3 +1,17 @@
|
||||||
# rs-base
|
# Wordle-analyzer
|
||||||
|
|
||||||
Base repository for rust projects
|
[Wordle](https://en.wikipedia.org/wiki/Wordle) is a popular game in which you
|
||||||
|
have to guess words by slowly guessing the letters contained in it.
|
||||||
|
|
||||||
|
`Wordle-analyzer` aims to offer a few things:
|
||||||
|
|
||||||
|
* A basic implementation of the Wordle game
|
||||||
|
* An Interface for solvers for the Wordle game, which can make use of math and
|
||||||
|
information theory
|
||||||
|
* A benchmark for Wordle solvers
|
||||||
|
|
||||||
|
## Wordlists
|
||||||
|
|
||||||
|
Included in this repository are the following wordlists:
|
||||||
|
|
||||||
|
* [`./data/wordlists/en_dwyl_words.txt`](https://github.com/dwyl/english-words)
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue