generated from PlexSheep/rs-base
This commit is contained in:
parent
6496fbb3bc
commit
8a38b9ec6f
4 changed files with 12 additions and 3 deletions
|
@ -10,7 +10,16 @@ readme = "README.md"
|
|||
homepage = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
|
||||
repository = "https://git.cscherr.de/PlexSheep/wordle-analyzer"
|
||||
keywords = ["wordle", "benchmark"]
|
||||
default-run = "wordle"
|
||||
|
||||
[features]
|
||||
default = ["game", "bench"]
|
||||
game = []
|
||||
bench = []
|
||||
|
||||
[dependencies]
|
||||
|
||||
[[bin]]
|
||||
name = "cliwordle"
|
||||
path = "src/bin/cliwordle.rs"
|
||||
required-features = ["game"]
|
||||
|
|
3
src/bin/cliwordle.rs
Normal file
3
src/bin/cliwordle.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
unimplemented!();
|
||||
}
|
0
src/lib.rs
Normal file
0
src/lib.rs
Normal file
|
@ -1,3 +0,0 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Add table
Reference in a new issue