-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (48 loc) · 1.18 KB
/
Copy pathCargo.toml
File metadata and controls
63 lines (48 loc) · 1.18 KB
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
61
62
63
[package]
name = "argus"
version = "0.1.0"
edition = "2021"
authors = ["Arrakis Finance"]
description = "Arbitrage monitoring service for WETH/USDC across multiple venues"
[dependencies]
# Async runtime
tokio = { version = "1.40", features = ["full"] }
# Web framework
rocket = { version = "0.5", features = ["json"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Ethereum interaction
ethers = { version = "2.0", features = ["ws", "rustls"] }
ethers-core = "2.0"
ethers-providers = "2.0"
ethers-contract = "2.0"
# HTTP client
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Logging and tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Configuration
config = "0.14"
dotenv = "0.15"
# Numerical operations
rust_decimal = "1.36"
num-bigint = "0.4"
num-traits = "0.2"
# Time handling
chrono = { version = "0.4", features = ["serde"] }
# Metrics
prometheus = "0.13"
# Async traits
async-trait = "0.1"
[dev-dependencies]
mockito = "1.5"
tokio-test = "0.4"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true