first commit

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

18
Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "focusmate-rs"
version = "0.1.0"
edition = "2021"
description = "Rust client for the Focusmate API"
license = "MIT"
repository = "https://git.felixm.de/felixm/focusmate-rs"
[lib]
name = "focusmate"
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"] }