forked from omnect/azure-iot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 968 Bytes
/
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
[package]
authors = ["omnect@conplement.de>"]
edition = "2021"
name = "azure-iot-sdk"
repository = "git@github.com:omnect/azure-iot-sdk.git"
version = "0.11.10"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
azure-iot-sdk-sys = { git = "https://github.com/omnect/azure-iot-sdk-sys.git", tag = "0.6.0", default-features = false }
eis-utils = { git = "https://github.com/omnect/eis-utils.git", tag = "0.3.2", optional = true }
futures = "0.3"
log = "0.4"
once_cell = "1.19"
serde_json = "1.0"
tokio = { version = "1", features = ["rt", "sync", "time"] }
url = "2.4"
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[features]
# select either "module_client", "edge_client" or "device_client" functionality
default = []
device_client = ["eis-utils"]
module_client = ["eis-utils"]
edge_client = ["azure-iot-sdk-sys/edge_modules"]