initial commit

This commit adds basic logic for submitting solutions to the server.
This commit is contained in:
2025-09-10 11:30:32 +02:00
commit 6babd63c0a
2 changed files with 69 additions and 0 deletions

14
Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "button"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.99"
json = "0.12.4"
reqwest = { version = "0.12.23", features = ["blocking"] }
rug = { version = "1.28.0", features = ["integer"], default-features = false }
[lib]
name = "lib"
path = "src/lib/lib.rs"