forked from mzyy94/hap-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (58 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
62 lines (58 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "hap"
version = "0.1.0-pre.15"
authors = ["Elias Wilken <elias@wlkn.io>"]
edition = "2021"
description = "Rust implementation of the Apple HomeKit Accessory Protocol (HAP)"
documentation = "https://docs.rs/hap"
readme = "README.md"
repository = "https://github.com/ewilken/hap-rs"
license = "MIT/Apache-2.0"
keywords = ["apple", "homekit"]
exclude = [
".github",
".gitignore",
"examples",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
"rls.toml",
"rustfmt.toml",
]
[dependencies]
aead = "0.5.2"
async-trait = "0.1"
byteorder = "1.3"
bytes = "1.0"
chacha20poly1305 = "0.10.1"
erased-serde = "0.4.5"
macaddr = { version = "1.0.1", features = ["serde"] }
futures = "0.3"
if-addrs = "0.13.3"
hyper = { version = "0.14.31", features = ["server", "http1"] }
libmdns = "0.9.1"
log = "0.4"
num = "0.4.3"
rand = "0.8.5"
serde = { version = "1.0", features = ["rc", "derive"] }
serde_json = "1.0"
hkdf = "0.12.4"
sha2 = "0.10.8"
srp = { git = "https://github.com/suzuke/PAKEs.git", branch = "master" }
thiserror = "2.0.3"
tokio = "1.8"
url = "2.1"
uuid = { version = "1.11.0", features = ["v4", "serde"] }
x25519-dalek = { version = "2.0.1", features = ["getrandom"] }
ed25519-dalek = { version = "2.1.1", features = ["std", "serde", "rand_core"] }
[build-dependencies]
handlebars = "6.2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.11.0", features = ["v4", "serde"] }
[dev-dependencies]
env_logger = "0.11.5"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.8", features = ["rt-multi-thread", "time", "macros"] }
[workspace]
members = ["codegen"]