21 lines
469 B
TOML
21 lines
469 B
TOML
[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"] }
|