-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
70 lines (67 loc) · 2.17 KB
/
Cargo.toml
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
63
64
65
66
67
68
69
70
[package]
name = "bifrost"
version = "0.1.0"
edition = "2021"
authors = ["Christian Iversen <ci@iversenit.dk>"]
rust-version = "1.76"
description = "A Philips Hue bridge emulator backed by zigbee2mqtt"
readme = "README.md"
repository = "https://github.com/chrivers/bifrost"
license = "GPL-3.0-only"
categories = ["api-bindings", "simulation", "network-programming"]
keywords = [
"home-automation",
"hue-lights",
"hue-bridge",
"home-assistant",
"hue",
"zigbee",
"hue-api",
"zigbee2mqtt",
"phillips-hue",
]
[features]
default = ["server", "server-banner"]
server = []
server-banner = ["server", "dep:termcolor", "dep:itertools"]
[dependencies]
async-stream = "0.3.5"
axum = { version = "0.7.5", features = ["macros"] }
axum-core = "0.4.3"
axum-server = { version = "0.6.0", features = ["rustls", "tls-rustls"] }
bytes = "1.7.1"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.17", features = ["color", "derive"] }
config = { version = "0.14.0", default-features = false, features = ["yaml"] }
futures = "0.3.30"
hyper = "1.4.1"
iana-time-zone = "0.1.60"
log = "0.4.22"
mac_address = { version = "1.1.7", features = ["serde"] }
mdns-sd = "0.11.4"
mime = "0.3.17"
rand = "0.8.5"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
serde_yml = "0"
thiserror = "1.0.63"
tokio = { version = "1.40.0", features = ["rt-multi-thread"] }
tokio-stream = { version = "0.1.16", features = ["sync"] }
tokio-tungstenite = "0.23.1"
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["normalize-path", "trace"] }
tracing = "0.1.40"
uuid = { version = "1.10.0", features = ["serde", "v4", "v5"] }
pretty_env_logger = "0.5.0"
camino = { version = "1.1.9", features = ["serde1"] }
x509-cert = { version = "0.2.5", features = ["builder", "hazmat"] }
rsa = "0.9.6"
sha2 = { version = "0.10.8", features = ["oid"] }
p256 = "0.13.2"
rand_core = { version = "0.6.4", features = ["getrandom"] }
ecdsa = { version = "0.16.9", features = ["der"] }
der = { version = "0.7.9", features = ["oid"] }
sha1 = "0.10.6"
rustls-pemfile = "2.1.3"
termcolor = { version = "1.4.1", optional = true }
itertools = { version = "0.13.0", optional = true }