-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
54 lines (51 loc) · 1.63 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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
# SPDX-License-Identifier: MIT
[workspace]
# The default resolver for workspaces is different than for regular packages, so use v2 to avoid warnings
resolver = "2"
members = [
"intent_brokering",
"intent_brokering/common",
"intent_brokering/ess",
"intent_brokering/examples/applications/kv-app",
"intent_brokering/examples/applications/invoke-command",
"intent_brokering/examples/applications/lt-consumer",
"intent_brokering/examples/applications/lt-provider",
"intent_brokering/examples/applications/simple-provider",
"intent_brokering/examples/common",
"intent_brokering/keyvalue",
"intent_brokering/proto.rs",
"service_discovery/core",
"service_discovery/samples/simple-discovery/consumer",
"service_discovery/samples/simple-discovery/provider"
]
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1"
intent_brokering_common = { path = "./intent_brokering/common/" }
intent_brokering_proto = { path = "./intent_brokering/proto.rs/" }
futures = { version = "0.3" }
lazy_static = "1.5.0"
parking_lot = "0.12.3"
prost = "0.12"
prost-types = "0.12"
regex = "1.10"
serde = "1.0.204"
serde_json = "1.0.120"
tokio = { version = "1.38", features = ["macros"] }
tokio-util = "0.7"
tokio-stream = { version = "0.1", features = ["net"] }
tonic = "0.11"
tonic-build = "0.10"
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.9.1", features = ["v4"] }
url = "2.5"
test-case = "2.2.2"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"