-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (44 loc) · 1.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
[workspace]
members = [
"build",
"client",
"error",
"server",
"integration",
"example/server",
"example/client",
]
resolver = "2"
[workspace.package]
authors = ["Thomas Pellissier-Tanon <thomas.pellissier-tanon@helsing.ai>"]
edition = "2021"
license = "Apache-2.0"
rust-version = "1.79"
[workspace.dependencies]
axum = { version = "0.8", default-features = false }
axum-core-05 = { package = "axum-core", version = "0.5.0" }
eyre = "0.6.10"
http = "1"
http-body = "1"
http-body-util = "0.1"
pin-project-lite = "0.2.16"
prost = "0.13.4"
prost-types = "0.13.4"
prost-build = "0.13.4"
prost-reflect = "0.14"
prost-reflect-build = "0.14"
regex = "1.8.1"
reqwest-012 = { package = "reqwest", version = "0.12", default-features = false }
serde = "1.0.217"
serde_json = "1"
tokio = "1.43"
tokio-stream = "0.1.16"
tonic = { version = "0.12.3", default-features = false }
tonic-012 = { package = "tonic", version = "0.12.3", default-features = false }
tonic-build = "0.12.3"
tower-service = "0.3.3"
tower = "0.5.2"
tower-http = "0.6.2"
tracing = "0.1.35"
trait-variant = "0.1.2"
twurst-error = { path = "error", version = "0.2.0" }