-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
36 lines (32 loc) · 1.02 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
[package]
name = "flashblocks-websocket-proxy"
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
[dependencies]
tokio = { version = "1.36", features = ["full"] }
tokio-tungstenite = { version = "0.26.2", features = ["native-tls"] }
metrics-exporter-prometheus = { version = "0.16.2", features = ["http-listener"]}
http = "1.2.0"
axum = { version = "0.8.1", features = ["ws"] }
tracing = "0.1.41"
clap = { version = "4", features = ["derive", "env"] }
# Replace dotenv with dotenvy (maintained fork)
dotenvy = "0.15.7"
backoff = "0.4.0"
futures = "0.3.31"
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }
tokio-util = "0.7.12"
# Update reqwest with specific features
reqwest = { version = "0.12.13", default-features = false, features = ["native-tls"] }
metrics = "0.24.1"
metrics-derive = "0.1"
thiserror = "2.0.11"
serde_json = "1.0.138"
hostname = "0.4.0"
redis = "0.24.0"
redis-test = { version = "0.9.0", optional = true }
[dependencies.ring]
version = "0.17.12"
[features]
integration = ["redis-test"]