This commit is contained in:
dolphinau 2025-12-01 13:03:29 +01:00
commit fc496204e7
No known key found for this signature in database
24 changed files with 2758 additions and 0 deletions

13
aoc-helper/Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "aoc-helper"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
clap = { version = "4.5.41", features = ["derive"] }
diesel = { version = "2.2.12", features = ["sqlite"] }
glob = "0.3.2"
log = "0.4.27"
reqwest = { version = "0.12.22", features = ["blocking"] }
simplelog = "0.12.2"