-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (57 loc) · 1.52 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
[package]
name = "rpc-gateway"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.86"
bytes = "1.7.1"
config = "0.14.0"
fastrand = "2.1.1"
# fastwebsockets = "0.8.0" TODO: can we use this instead?
futures = "0.3.30"
futures-util = "0.3.30"
http-body-util = "0.1.2"
hyper = { version = "1.4.1", features = [
"full",
] } # TODO: does this need to be full?
hyper-util = { version = "0.1.7", features = ["tokio"] }
opentelemetry = "0.24"
opentelemetry-otlp = { version = "0.17.0", features = [
"grpc-tonic",
"gzip-tonic",
] }
opentelemetry-stdout = { version = "0.5.0", features = ["trace"] }
opentelemetry_sdk = { version = "0.24.0", features = ["rt-tokio"] }
regex = "1.10.6"
reqwest = { version = "0.12.7", features = ["json"] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
thiserror = "1.0.63"
tokio = { version = "1.39.3", features = [
"net",
"macros",
"rt-multi-thread",
"io-util",
"signal",
] }
tokio-stream = { version = "0.1.16", features = ["sync"] }
tokio-tungstenite = { version = "0.23.1", features = [
"native-tls",
] } # TODO: find the appropriate tls handler
tokio-util = { version = "0.7.11", features = ["rt"] }
tracing = "0.1.40"
tracing-futures = { version = "0.2.5", features = [
"futures",
"tokio",
"tokio-executor",
] }
tracing-opentelemetry = "0.25.0"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"json",
"valuable",
"valuable-serde",
] }
url = "2.5.2"
[dev-dependencies]
lazy_static = "1.5.0"