-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathCargo.toml
191 lines (188 loc) · 6.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
[workspace]
members = [
"crates/common/*",
"crates/core/*",
"crates/extensions/*",
"crates/tests/*",
"plugins/c8y_configuration_plugin",
"plugins/c8y_firmware_plugin",
"plugins/c8y_log_plugin",
"plugins/c8y_remote_access_plugin",
"plugins/tedge_apt_plugin",
"plugins/tedge_configuration_plugin",
"plugins/tedge_dummy_plugin",
"plugins/tedge_log_plugin",
]
resolver = "2"
[workspace.package]
version = "0.13.1"
authors = ["thin-edge.io team <[email protected]>"]
edition = "2021"
rust-version = "1.70"
license = "Apache-2.0"
homepage = "https://thin-edge.io"
repository = "https://github.com/thin-edge/thin-edge.io"
[workspace.dependencies]
anstyle = "1.0"
anyhow = "1.0"
assert-json-diff = "2.0"
assert_cmd = "2.0"
assert_matches = "1.5"
async-compat = "0.2.1"
async-log = "2.0"
async-trait = "0.1"
async-tungstenite = { version = "0.23", features = [
"tokio-runtime",
"tokio-rustls-native-certs",
] }
axum_tls = { path = "crates/common/axum_tls" }
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
aws_mapper_ext = { path = "crates/extensions/aws_mapper_ext" }
axum = "0.6"
az_mapper_ext = { path = "crates/extensions/az_mapper_ext" }
backoff = { version = "0.4", features = ["tokio"] }
base64 = "0.13"
batcher = { path = "crates/common/batcher" }
bytes = "1.4"
c8y_api = { path = "crates/core/c8y_api" }
c8y_config_manager = { path = "crates/extensions/c8y_config_manager" }
c8y_firmware_manager = { path = "crates/extensions/c8y_firmware_manager" }
c8y_http_proxy = { path = "crates/extensions/c8y_http_proxy" }
c8y_auth_proxy = { path = "crates/extensions/c8y_auth_proxy" }
c8y_log_manager = { path = "crates/extensions/c8y_log_manager" }
c8y-configuration-plugin = { path = "plugins/c8y_configuration_plugin" }
c8y-firmware-plugin = { path = "plugins/c8y_firmware_plugin" }
c8y_mapper_ext = { path = "crates/extensions/c8y_mapper_ext" }
c8y-remote-access-plugin = { path = "plugins/c8y_remote_access_plugin" }
camino = "1.1"
certificate = { path = "crates/common/certificate" }
clap = { version = "4.4", features = ["cargo", "derive"] }
clock = { path = "crates/common/clock" }
collectd_ext = { path = "crates/extensions/collectd_ext" }
capture-logger = "0.1"
csv = "1.1"
darling = "0.20"
doku = "0.21"
download = { path = "crates/common/download" }
easy_reader = "0.5"
env_logger = "0.10"
fastrand = "1.8"
figment = { version = "0.10" }
filetime = "0.2"
flockfile = { path = "crates/common/flockfile" }
freedesktop_entry_parser = "1.3.0"
futures = "0.3"
futures-timer = "3.0"
futures-util = "0.3.25"
glob = "0.3"
heck = "0.4.1"
http = "0.2"
hyper = { version = "0.14", default-features = false }
hyper-rustls = { version = "0.24", default_features = false, features = [
"tokio-runtime",
"tls12",
"rustls-native-certs",
"http1",
"http2",
] }
json-writer = { path = "crates/common/json_writer" }
lazy_static = "1.4"
log = "0.4"
log_manager = { path = "crates/common/log_manager" }
logged_command = { path = "crates/common/logged_command" }
maplit = "1.0"
miette = { version = "5.5.0", features = ["fancy"] }
mockall = "0.11"
mockito = "1.1.0"
mqtt_channel = { path = "crates/common/mqtt_channel" }
mqtt_tests = { path = "crates/tests/mqtt_tests" }
nanoid = "0.4"
nix = "0.26"
notify = { version = "6.1.1", default-features = false }
notify-debouncer-full = { version = "0.3.1", default-features = false }
once_cell = "1.8"
pad = "0.1"
path-clean = "0.1"
pem = "1.0"
pin-project = { version = "1.1.3", features = [] }
plugin_sm = { path = "crates/core/plugin_sm" }
predicates = "2.1"
proc-macro2 = "1"
proptest = "1.0"
quote = "1"
rand = "0.8"
rcgen = { version = "0.9", features = ["pem", "zeroize"] }
regex = "1.4"
reqwest = { version = "0.11", default-features = false }
rpassword = "5.0"
rstest = "0.16.0"
rumqttc = "0.22"
rumqttd = "0.17"
rustls = "0.21.6"
rustls-pemfile = "1.0.1"
serde = "1.0"
serde_ignored = "0.1"
serde_json = "1.0"
serial_test = "0.8"
sha-1 = "0.10"
sha256 = "1.1"
shell-words = "1.1"
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
strum_macros = "0.24"
syn = { version = "2", features = ["full", "extra-traits"] }
tedge_actors = { path = "crates/core/tedge_actors" }
tedge_api = { path = "crates/core/tedge_api" }
tedge-apt-plugin = { path = "plugins/tedge_apt_plugin" }
tedge-agent = { path = "crates/core/tedge_agent" }
tedge_config = { path = "crates/common/tedge_config" }
tedge_config_macros = { path = "crates/common/tedge_config_macros" }
tedge_config_macros-impl = { path = "crates/common/tedge_config_macros/impl" }
tedge_config_manager = { path = "crates/extensions/tedge_config_manager" }
tedge_downloader_ext = { path = "crates/extensions/tedge_downloader_ext" }
tedge-configuration-plugin = { path = "plugins/tedge_configuration_plugin" }
tedge_file_system_ext = { path = "crates/extensions/tedge_file_system_ext" }
tedge_health_ext = { path = "crates/extensions/tedge_health_ext" }
tedge_http_ext = { path = "crates/extensions/tedge_http_ext" }
tedge_log_manager = { path = "crates/extensions/tedge_log_manager" }
tedge-log-plugin = { path = "plugins/tedge_log_plugin" }
tedge-mapper = { path = "crates/core/tedge_mapper" }
tedge_mqtt_ext = { path = "crates/extensions/tedge_mqtt_ext" }
tedge_uploader_ext = { path = "crates/extensions/tedge_uploader_ext" }
tedge_script_ext = { path = "crates/extensions/tedge_script_ext" }
tedge_signal_ext = { path = "crates/extensions/tedge_signal_ext" }
tedge_test_utils = { path = "crates/tests/tedge_test_utils" }
tedge_timer_ext = { path = "crates/extensions/tedge_timer_ext" }
tedge_utils = { path = "crates/common/tedge_utils" }
tedge-watchdog = { path = "crates/core/tedge_watchdog" }
tokio-rustls = "0.24.1"
tempfile = "3.5"
test-case = "3.2"
thiserror = "1.0"
time = "0.3"
tokio = { version = "1.23", default-features = false }
tokio-util = { version = "0.7", features = ["codec"] }
toml = "0.7"
tower = "0.4"
http-body = "0.4"
tracing = { version = "0.1", features = ["attributes", "log"] }
tracing-subscriber = { version = "0.3", features = ["time", "env-filter"] }
try-traits = "0.1"
tungstenite = "0.20"
upload = { path = "crates/common/upload" }
url = "2.3"
uzers = "0.11"
walkdir = "2"
which = "4.2"
whoami = "1.2.1"
ws_stream_tungstenite = "0.11"
x509-parser = "0.14"
yansi = "0.5"
zeroize = "1.5"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = "symbols"
overflow-checks = true