hoard/Cargo.toml

18 lines
568 B
TOML
Raw Normal View History

2024-03-07 15:18:47 +00:00
[package]
name = "hoard"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.35"
env_logger = "0.11.3"
log = "0.4.21"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
toml = "0.8.10"
2024-03-16 23:42:36 +00:00
reqwest = { version = "0.11.26", features = ["blocking", "json"] }
2024-12-08 16:59:30 +00:00
sqlx = { version = "0.8", features = ["postgres", "sqlite", "runtime-tokio-native-tls", "derive", "uuid", "chrono", "json"] }
tokio = { version = "1.42.0", features = ["full"] }