forked from eclipse-chariott/chariott
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
90 lines (81 loc) · 2.13 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
[workspace]
members = [
"common",
"ess",
"examples/applications/cloud-object-detection",
"examples/applications/dog-mode-logic",
"examples/applications/kv-app",
"examples/applications/local-object-detection",
"examples/applications/lt-consumer",
"examples/applications/lt-provider",
"examples/applications/mock-vas",
"examples/applications/simulated-camera",
"examples/common",
"keyvalue",
"proto.rs",
]
exclude = []
[package]
name = "chariott"
version = "0.1.0"
edition = "2021"
license = "MIT"
[[test]]
name = "store-e2e"
test = false
[[test]]
name = "registry-e2e"
test = false
[dependencies]
async-recursion = "1.0"
async-trait = { workspace = true }
chariott-common = { workspace = true }
chariott-proto = { workspace = true }
prost = { workspace = true }
prost-types = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "time"] }
tokio-util = { workspace = true }
tonic = { workspace = true }
tonic-reflection = "0.5"
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
url = { workspace = true }
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1"
chariott-common = { path = "./common/" }
chariott-proto = { path = "./proto.rs/" }
futures = { version = "0.3" }
lazy_static = "1.4.0"
prost = "0.11"
prost-types = "0.11"
regex = "1.7"
serde = "1.0.147"
serde_json = "1.0.87"
tokio = { version = "1.21.2", features = ["macros"] }
tokio-util = "0.7.3"
tokio-stream = { version = "0.1", features = ["net"] }
tonic = "0.8"
tonic-build = "0.8"
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.2.1", features = ["v4"] }
url = "2.2"
test-case = "2.2.2"
[build-dependencies]
tonic-build = { workspace = true }
[dev-dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
examples-common = { path = "./examples/common" }
futures = { workspace = true }
tokio-util = { workspace = true }
uuid = { workspace = true }
tokio-stream = { workspace = true }
test-case = { workspace = true }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"