forked from device-automation-bus/dab-adapter-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.29 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
[package]
name = "dab-adapter"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/device-automation-bus/dab-adapter-rs/"
description = "Enables compatibility of devices based on Reference Design Kit (RDK) with DAB (get-dab.com)"
version = "0.6.0"
edition = "2021"
repository = "https://github.com/device-automation-bus/dab-adapter-rs.git"
build = "build.rs"
[[bin]]
name = "dab-adapter"
path = "src/adapter.rs"
[dependencies]
clap = { version = "3.2", features = ["derive"] }
paho-mqtt = { version = "0.12", default-features = false, features = ["vendored-ssl"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.6.0"
tungstenite = "0.20"
bytes = "1.3.0"
surf = { version = "2.3.2", default-features = false, features = ["h1-client-rustls"] }
futures = "0.3.5"
lazy_static = "1.4.0"
hyper = {version ="0.14", features = ["full"]}
tokio = { version = "1", features = ["full"] }
async-std = { version = "1.9.0", features = ["attributes"] }
image = "0.24"
tiff = "0.9"
flate2 = "1.0"
local-ip-address = "0.5"
crossbeam = "0.8.1"
base64 = "0.21.0"
notify = "6.0.1"
urlencoding = "2.0.0"
url = "2.2"
tokio-tungstenite = "0.15"
futures-util = "0.3"
[build-dependencies]
rustfmt = "0.10.0"
vergen = { version = "=6.0.2", default-features = false, features = ["build", "git"] }