summaryrefslogtreecommitdiffstats
path: root/crates/core/tedge_agent/Cargo.toml
blob: 777329740bd63ea601cdcba673fbb136dc334274 (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
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "tedge_agent"
version = "0.7.4"
authors = ["thin-edge.io team <info@thin-edge.io>"]
edition = "2021"
rust-version = "1.58.1"
license = "Apache-2.0"
description = "tedge_agent interacts with a Cloud Mapper and one or more Software Plugins"

[package.metadata.deb]
pre-depends = "tedge_mapper"
maintainer-scripts = "../../../configuration/debian/tedge_agent"
assets = [
    ["../../../configuration/init/systemd/tedge-agent.service", "/lib/systemd/system/tedge-agent.service", "644"],
    ["target/release/tedge_agent", "/usr/bin/tedge_agent", "755"],
]

[package.metadata.deb.systemd-units]
unit-scripts = "../../../configuration/init/systemd"
enable = false
start = false
stop-on-upgrade = false

[dependencies]
agent_interface = { path = "../agent_interface" }
anyhow = "1.0"
async-trait = "0.1"
clap = { version = "3.2", features = ["cargo", "derive"] }
flockfile = { path = "../../common/flockfile" }
futures = "0.3"
mqtt_channel = { path = "../../common/mqtt_channel" }
plugin_sm = { path = "../plugin_sm" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tedge_config = { path = "../../common/tedge_config" }
tedge_utils = { path = "../../common/tedge_utils", features = ["logging"] }
thin_edge_json = { path = "../../core/thin_edge_json" }
thiserror = "1.0"
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1.8", features = ["fs","process", "rt", "rt-multi-thread"] }
toml = "0.5"
tracing = { version = "0.1", features = ["attributes", "log"] }

[dev-dependencies]
anyhow = "1.0"
assert_cmd = "2.0"
assert-json-diff = "2.0"
once_cell = "1.8"
mqtt_tests = { path = "../../tests/mqtt_tests" }
predicates = "2.1"
tedge_utils = { path = "../../common/tedge_utils"}
tedge_test_utils = { path = "../../tests/tedge_test_utils"}
tokio-test = "0.4"
serial_test = "0.8"