generated from PlexSheep/rs-base
features
cargo devel CI / cargo CI (push) Failing after 21s
Details
cargo devel CI / cargo CI (push) Failing after 21s
Details
This commit is contained in:
parent
6496fbb3bc
commit
8a38b9ec6f
|
@ -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"]
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
unimplemented!();
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in New Issue