-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
46 lines (44 loc) · 1015 Bytes
/
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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
# SPDX-License-Identifier: MIT
[workspace]
resolver = "2"
members = [
"common",
"proc-macros",
"pub-sub-service",
"samples/chariott-publisher",
"samples/chariott-subscriber",
"samples/common",
"samples/simple-publisher",
"samples/simple-subscriber"
]
[workspace.dependencies]
async-std = "1"
async-trait = "0.1.81"
clap = { version = "4.5.9" }
config = "0.13.3"
ctrlc = { version = "3.4", features = ["termination"] }
env_logger = "0.10"
futures = "0.3"
home = "0.5.9"
include_dir = "0.7.4"
log = "^0.4"
paho-mqtt = "0.12"
proc-macro2 = "1.0.86"
prost = "0.12"
prost-types = "0.12"
quote = "1.0.36"
serde = "1.0.204"
serde_derive = "1.0.163"
serde_json = "^1.0"
strum = "0.25"
strum_macros = "0.25"
syn = { version = "2.0.71", features = ["extra-traits", "full"] }
tokio = { version = "1.38.0", features = ["time"] }
tonic = "0.10"
tonic-build = "0.10"
tonic-reflection = "0.10"
url = "2.5"
uuid = "1.10.0"
yaml-rust = "0.4"