HomeServer/Cargo.toml

18 lines
497 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"
2023-09-22 00:02:00 +00:00
anyhow = { version = "1.0.75", features = ["backtrace"] }
2023-10-04 00:02:02 +00:00
reqwest = "0.11.22"
2023-09-21 05:30:39 +00:00
serde = { version = "1.0", features = ["derive"] }
2023-09-19 08:52:12 +00:00
serde_json = "1.0"
futures = "0.3.28"
2023-09-21 05:30:39 +00:00
tokio = { version = "1.32.0", features=["macros", "rt-multi-thread"] }
chrono = "0.4.31"
2023-09-21 08:08:23 +00:00
actix-web = "4.4.0"
actix-files = "0.6.2"