summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 18d452d931a7c863f50130dc09448b2dfa624bb9 (plain)
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
[workspace]
members = [
    "exes/cache/",
    "exes/gateway/",
    "exes/rest/",
    "exes/webhook/",
    "exes/ratelimit/",
		"exes/all-in-one/",

    "libs/proto/",
    "libs/shared/",
    "libs/leash/"
]

[workspace.dependencies]
shared = { path = "libs/shared" }
proto =  { path = "libs/proto" }
leash = { path = "libs/leash" }

tokio = { version = "1", features = ["rt-multi-thread"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
hyper = "0.14.23"

anyhow = "1"

tracing = "0.1"
tracing-futures = "0.2"
tracing-opentelemetry = "0.18"
opentelemetry = "0.18"
opentelemetry-http = "0.7"
tikv-jemallocator = "0.5"

criterion = { version = "0.4", features = ["async_tokio"] }
tokio-test = "0.4.2"
tracing-test = "0.2.3"
tracing-subscriber = "0.3.16"
test-log = { version = "*", features = ["trace"] }
env_logger = "0.10.0"