features
cargo devel CI / cargo CI (push) Failing after 21s Details

This commit is contained in:
Christoph J. Scherr 2024-03-20 17:04:54 +01:00
parent 6496fbb3bc
commit 8a38b9ec6f
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
4 changed files with 12 additions and 3 deletions

View File

@ -10,7 +10,16 @@ readme = "README.md"
homepage = "https://git.cscherr.de/PlexSheep/wordle-analyzer" homepage = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
repository = "https://git.cscherr.de/PlexSheep/wordle-analyzer" repository = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
keywords = ["wordle", "benchmark"] keywords = ["wordle", "benchmark"]
default-run = "wordle"
[features]
default = ["game", "bench"]
game = []
bench = []
[dependencies] [dependencies]
[[bin]]
name = "cliwordle"
path = "src/bin/cliwordle.rs"
required-features = ["game"]

3
src/bin/cliwordle.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
unimplemented!();
}

0
src/lib.rs Normal file
View File

View File

@ -1,3 +0,0 @@
fn main() {
println!("Hello, world!");
}