rustyfox/Cargo.toml

13 lines
398 B
TOML
Raw Normal View History

2025-01-25 00:09:48 +00:00
[package]
2025-01-27 17:40:02 +00:00
name = "rustyfox"
2025-01-27 20:34:08 +00:00
version = "0.1.0"
2025-01-25 00:09:48 +00:00
edition = "2021"
[dependencies]
2025-01-27 20:34:08 +00:00
anyhow = "1.0"
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1.43", features = ["full", "rt-multi-thread"]}
serde = { version = "1.0", features = ["default", "derive"]}
serde_json = { version = "1.0", features = ["default", "std", "alloc"]}
2025-01-27 22:41:00 +00:00
chrono = { version = "0.4", features = ["serde"] }