-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (36 loc) · 1001 Bytes
/
Cargo.toml
File metadata and controls
47 lines (36 loc) · 1001 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
44
45
46
47
[package]
name = "helix"
version = "0.1.0"
edition = "2021"
description = "A cyclic DEX arbitrage detector built with Rust and REVM"
authors = ["danieljrc888"]
license = "MIT"
[dependencies]
# Ethereum primitives and ABI encoding
alloy = { version = "1.0", features = ["provider-http", "network"] }
alloy-primitives = { version = "1.0", features = ["serde"] }
alloy-sol-types = "1.0"
# EVM simulation
revm = { version = "33", features = ["std", "alloydb"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
thiserror = "2"
# Async runtime
tokio = { version = "1", features = ["full"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# CLI
clap = { version = "4", features = ["derive"] }
# Parallelism
rayon = "1"
# Colored output
colored = "2"
[dev-dependencies]
pretty_assertions = "1"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "arbitrage"
harness = false