summaryrefslogtreecommitdiffstats
path: root/tedge/Cargo.toml
blob: ef4e879f156adc5e2dacb82be442c5906f49932e (plain)
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 = "tedge"
version = "0.1.0"
edition = "2018"
authors = ["Software AG <thin-edge-team@softwareag.com>"]
license = "Apache-2.0"
readme = "README.md"
description = "tedge is the cli tool for thin-edge.io"

[package.metadata.deb]
depends = "mosquitto"
maintainer-scripts = "../configuration/debian/tedge"

[dependencies]
anyhow = "1.0.38"
chrono = "0.4.19"
futures = "0.3.12"
mqtt_client = {version = "0.1.0", path = "../common/mqtt_client" }
rcgen = { version = "0.8.9", features = ["pem"] }
reqwest = { version = "0.11.1", default-features = false, features = ["blocking", "json", "rustls-tls", "stream"] }
rpassword = "5.0.1"
rumqttc = { git = "https://github.com/bytebeamio/rumqtt" }
serde = { version = "1.0.123", features = ["derive"] }
structopt = "0.3.21"
tempfile = "3.2.0"
thiserror = "1.0.23"
tokio = { version = "1.1.1", features = ["rt", "signal", "io-util", "sync"] }
toml = "0.5.8"
url = "2.2.0"
which = "4.0.2"
x509-parser = "0.9.0"
zeroize = "1.2.0"

[dev-dependencies]
assert_cmd = "1.0.2"
assert_matches = "1.4.0"
mockito = "0.29.0"
pem = "0.8.2"
predicates = "1.0.6"

[features]
integration-test = []
mosquitto-available = []