-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (35 loc) · 922 Bytes
/
Cargo.toml
File metadata and controls
44 lines (35 loc) · 922 Bytes
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
[package]
name = "torpc"
version = "0.1.0"
edition = "2021"
[dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# Web framework
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["fs", "trace", "set-header", "limit", "timeout", "cors"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP client
reqwest = { version = "0.11", features = ["json", "socks"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utilities
uuid = { version = "1.6", features = ["v4", "serde"] }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1.19"
chrono = { version = "0.4", features = ["serde"] }
# Cryptography for MEV
secp256k1 = { version = "0.27", features = ["recovery"] }
sha3 = "0.10"
hex = "0.4"
rand = "0.8"
[dev-dependencies]
# Testing
mockito = "1.2"
tempfile = "3.8"
axum-test = "14.0"