-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (38 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
40 lines (38 loc) · 1.31 KB
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
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
[package]
name = "ecu-updater"
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/eclipse-uprotocol/symphony-target-example-rust"
[dependencies]
async-trait = { version = "0.1.89" }
backon = { version = "1.6", default-features = false, features = ["tokio-sleep"] }
clap = { version = "4.5.51", default-features = false, features = [
"std",
"derive",
"env",
"color",
"help",
"usage",
"error-context",
"suggestions",
] }
clap-num = { version = "1.2" }
env_logger = { version = "0.11.8" }
log = { version = "0.4.28" }
symphony = { version = "0.1.4" }
tokio = { version = "1.48", default-features = false, features = ["macros", "rt-multi-thread", "signal"] }
up-rust = { version = "0.9", default-features = false, features = ["communication", "symphony", "util"] }
up-transport-mqtt5 = { version = "0.4" }
up-transport-zenoh = { version = "0.9" }