Initial commit

This commit is contained in:
2024-12-14 13:36:05 -05:00
commit 24c2e86396
7 changed files with 2007 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "beeminder-rs"
version = "0.1.0"
edition = "2021"
[lib]
name = "beeminder"
path = "src/lib.rs"
[dependencies]
reqwest = { version = "^0.12", features = ["json"] }
serde = { version = "^1.0", features = ["derive"] }
thiserror = "^2.0"
tokio = { version = "^1.42", features = ["full"] }
time = { version = "^0.3", features = ["serde", "parsing", "formatting", "macros"] }