Initial commit

This commit is contained in:
2025-11-06 22:34:14 +01:00
commit ebdbe60e04
21 changed files with 3449 additions and 0 deletions

13
Cargo.toml Normal file
View File

@@ -0,0 +1,13 @@
[package]
name = "anagram-generator"
version = "0.1.0"
edition = "2024"
authors = ["Rawleenc"]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
rand = "0.8"
[[bin]]
name = "anagram-generator"
path = "src/main.rs"