homekit-logger/homekit-controller/Cargo.toml

26 lines
641 B
TOML
Raw Normal View History

2024-02-15 15:15:01 +11:00
[package]
name = "homekit-controller"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
log = "0.4"
2024-02-18 09:36:09 +11:00
x25519-dalek = { version = "2", features = ["getrandom"] }
ed25519-dalek = { version = "2" }
chacha20poly1305 = "0.10.1"
hkdf = "0.12.4"
sha2 = "0.10"
hex = { version = "0.4", features = ["serde"] }
2024-02-22 10:13:55 +11:00
http = "1.0"
httparse = "1.8"
2024-02-22 12:50:46 +11:00
tokio = { version = "1.36", features = ["net"] }
2024-02-23 17:52:47 +11:00
strum = "0.26"
strum_macros = "0.26"
2024-02-24 18:46:31 +11:00
mdns = "3.0.0"
futures-util = "0.3.30"