SolarEnergy/central_backend/Cargo.toml

24 lines
564 B
TOML
Raw Normal View History

2024-06-27 16:55:09 +00:00
[package]
name = "central_backend"
version = "0.1.0"
edition = "2021"
[dependencies]
log = "0.4.21"
env_logger = "0.11.3"
lazy_static = "1.5.0"
clap = { version = "4.5.7", features = ["derive", "env"] }
anyhow = "1.0.86"
thiserror = "1.0.61"
2024-06-27 23:05:02 +00:00
openssl = { version = "0.10.64" }
2024-06-28 17:19:17 +00:00
openssl-sys = "0.9.102"
libc = "0.2.155"
foreign-types-shared = "0.1.1"
2024-06-28 20:00:20 +00:00
asn1 = "0.16"
actix-web = { version = "4", features = ["openssl"] }
2024-06-28 20:28:43 +00:00
futures = "0.3.30"
serde = { version = "1.0.203", features = ["derive"] }
reqwest = "0.12.5"
serde_json = "1.0.118"
2024-06-29 09:45:39 +00:00
rand = "0.8.5"
actix = "0.13.5"