homekit-logger/homekit-controller/Cargo.toml

28 lines
666 B
TOML
Raw Normal View History

2024-02-15 15:15:01 +11:00
[package]
name = "homekit-controller"
2024-04-02 08:53:27 +11:00
version = "0.5.5"
2024-02-15 15:15:01 +11:00
edition = "2021"
2024-04-02 08:53:27 +11:00
license = "Apache-2.0"
description = "Partial implementation of the HomeKit controller protocol"
authors = ["Alex Janka"]
2024-02-15 15:15:01 +11:00
[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"