feat: adding a crossword puzzle generator to the game

This commit is contained in:
Lucas Oskorep
2024-09-02 01:59:39 -04:00
parent f9556804d7
commit 9ba6ae33d3
10 changed files with 94 additions and 26 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "regexle"
version = "0.1.0"
edition = "2021"
[dependencies]
csv = "1.3.0"
fancy-regex = "0.13.0"
rayon = "1.10.0"
serde = "1.0.209"
serde_derive = "1.0.209"
wasm_crossword_generator = "0.0.4"
rand = "0.8.5"
[[bin]]
name = "checker"
path = "src/checker/bin/main.rs"
[[bin]]
name = "generator"
path = "src/generator/bin/main.rs"