HomeServer/Cargo.toml

15 lines
433 B
TOML
Raw Normal View History

2023-09-19 08:52:12 +00:00
[package]
name = "home_server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rusqlite = "0.29.0"
anyhow = { version = "1.0.71", features = ["backtrace"] }
reqwest = "0.11.20"
serde = { version="1.0", features = ["derive"] }
serde_json = "1.0"
futures = "0.3.28"
tokio = { version="1.32.0", features=["macros", "rt-multi-thread"] }