first commit

This commit is contained in:
2024-12-07 13:20:02 -05:00
commit 0bd5155210
6 changed files with 1923 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "focusmaters"
version = "0.1.0"
edition = "2021"
[lints.rust]
dead_code = "warn"
[lints.clippy]
expect_used = "allow"
nursery = "warn"
pedantic = "warn"
unwrap_used = "warn"
[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"] }