forked from eclipse-ibeji/ibeji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
77 lines (69 loc) · 1.49 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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
# SPDX-License-Identifier: MIT
[workspace]
# Use version 2 of the feature resolver.
# This is needed by a dependency of the show-image crate.
resolver = "2"
members = [
# core
"core/common",
"core/protobuf_data_access",
"core/invehicle-digital-twin",
# extension
"core/module/managed_subscribe",
# DTDL tools
"dtdl-tools",
# digital twin model
"digital-twin-model",
# samples
"samples/common",
"samples/protobuf_data_access",
"samples/command",
"samples/managed_subscribe",
"samples/mixed",
"samples/property",
"samples/seat_massager",
"samples/streaming",
"samples/tutorial"
]
[workspace.dependencies]
async-std = "^1.5"
bytes = "1.4.0"
config = "0.14.0"
derivative = "2.2.0"
dyn-clone = "1.0.14"
env_logger= "0.11.2"
futures = "0.3.28"
futures-core = "0.3.4"
futures-util = "0.3.28"
generic-json = "^0.7"
http = "0.2.9"
http-body = "0.4.5"
hyper = "0.14.27"
image = "0.24.3"
iref = "^3.1.2"
lazy_static = "1.4.0"
log = "^0.4"
paho-mqtt = "0.12"
parking_lot = "0.12.1"
prost = "0.12"
prost-types = "0.12"
rand = "0.8.5"
regex = " 1.9.3"
sdl2 = "0.35.2"
serde = "1.0.160"
serde_derive = "1.0.163"
serde_json = "^1.0"
strum = "0.26.1"
strum_macros = "0.26.1"
tokio = "1.29.1"
tokio-console-subscriber = { version = "0.2.0", package = "console-subscriber" }
tokio-stream = "0.1.14"
tonic = "0.11.0"
tonic-build = "0.11.0"
tower = "0.4.13"
tower-http = "0.4.3"
url = "2.3.1"
uuid = "1.2.2"
yaml-rust = "0.4"