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]
|
2024-02-22 02:03:09 +00:00
|
|
|
rusqlite = "0.31.0"
|
2024-03-12 03:03:42 +00:00
|
|
|
anyhow = { version = "1.0.81", features = ["backtrace"] }
|
2024-04-10 06:04:44 +00:00
|
|
|
reqwest = "0.12.3"
|
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"
|
2024-03-28 18:02:10 +00:00
|
|
|
tokio = { version = "1.37.0", features=["macros", "rt-multi-thread"] }
|
2023-10-16 11:46:25 +00:00
|
|
|
tibber = "0.5.0"
|
2024-03-27 12:02:33 +00:00
|
|
|
chrono = "0.4.37"
|
2024-02-07 02:02:27 +00:00
|
|
|
actix-web = "4.5.1"
|
2023-10-16 11:46:25 +00:00
|
|
|
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"
|