HomeServer/Cargo.toml

22 lines
593 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]
2023-11-13 01:03:01 +00:00
rusqlite = "0.30.0"
2024-01-11 01:03:28 +00:00
anyhow = { version = "1.0.79", features = ["backtrace"] }
2024-01-13 01:03:25 +00:00
reqwest = "0.11.23"
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"
2024-01-12 01:04:51 +00:00
futures = "0.3.30"
2023-12-09 01:01:57 +00:00
tokio = { version = "1.35.0", features=["macros", "rt-multi-thread"] }
tibber = "0.5.0"
2023-09-21 05:30:39 +00:00
chrono = "0.4.31"
2023-12-25 01:02:13 +00:00
actix-web = "4.4.1"
midea = { git = "https://gavania.de/hodasemi/Midea.git" }
2024-01-14 01:03:30 +00:00
actix-cors = "0.7.0"
2023-10-19 14:26:09 +00:00
dns-lookup = "2.0.4"