forked from Azure/iotedge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (50 loc) · 1.33 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
[package]
name = "edgelet-http"
version = "0.1.0"
authors = ["Azure IoT Edge Devs"]
publish = false
edition = "2018"
[dependencies]
bytes = "0.4"
chrono = "0.4"
failure = "0.1"
futures = "0.1"
hyper = "0.12"
hyper-proxy = "0.5"
hyper-tls = "0.3"
log = "0.4"
openssl = "0.10"
percent-encoding = "1.0"
regex = "0.2"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
tokio = "0.1.11"
typed-headers = "0.1"
url = "1.7"
native-tls = "0.2"
tokio-tls = "0.2"
edgelet-core = { path = "../edgelet-core" }
edgelet-hsm = { path = "../edgelet-hsm" }
edgelet-utils = { path = "../edgelet-utils" }
systemd = { path = "../systemd" }
[target.'cfg(unix)'.dependencies]
hyperlocal = "0.6"
libc = "0.2"
nix = "0.14"
scopeguard = "0.3.3"
tokio-uds = "0.2"
[target.'cfg(windows)'.dependencies]
hyper-named-pipe = { path = "../hyper-named-pipe" }
hyperlocal-windows = { git = "https://github.com/Azure/hyperlocal-windows" }
mio-uds-windows = { git = "https://github.com/Azure/mio-uds-windows.git" }
tokio-named-pipe = { path = "../tokio-named-pipe" }
tokio-uds-windows = { git = "https://github.com/Azure/tokio-uds-windows.git" }
winapi = { version = "0.3.5", features = ["winsock2"] }
[dev-dependencies]
lazy_static = "1.0"
tempfile = "3"
tempdir = "0.3.7"
edgelet-test-utils = { path = "../edgelet-test-utils" }
[target.'cfg(windows)'.dev-dependencies]
rand = "0.4"