-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (38 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
47 lines (38 loc) · 1.72 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
[package]
name = "rethdb-dexsync"
version = "0.0.1"
publish = false
edition = "2021"
license = "Apache-2.0 OR MIT"
rust-version = "1.82"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
eyre = "0.6"
lazy_static = "1.5"
bincode = "1.3.3"
thiserror = "1.0"
tracing = "0.1"
reth-chainspec = { git = "https://github.com/paradigmxyz/reth", rev="de07436" }
reth-db = { git = "https://github.com/paradigmxyz/reth", rev="de07436" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev="de07436", features = ["asm-keccak"]}
reth-provider = { git = "https://github.com/paradigmxyz/reth", rev="de07436" }
reth-rpc = { git = "https://github.com/paradigmxyz/reth", rev="de07436" }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", rev="de07436" }
reth-node-types = { git = "https://github.com/paradigmxyz/reth", rev="de07436" }
reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth", rev="de07436" }
reth-blockchain-tree = { git = "https://github.com/paradigmxyz/reth", rev="de07436" }
reth-stages = { git = "https://github.com/paradigmxyz/reth", rev="de07436" , features = ["test-utils"]}
reth-storage-api = { git = "https://github.com/paradigmxyz/reth", rev="de07436" }
alloy-primitives = "0.8.7"
alloy-sol-types = "0.8.7"
alloy = { version = "0.5", features = ["rpc-types", "asm-keccak", "eips"] }
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
tracing-subscriber = "0.3"
pool-sync = { git="https://github.com/Zacholme7/PoolSync", rev="29a6e5a" }
amms = { git="https://github.com/cakevm/amms-rs", rev="0f2a764"}
alloy = { version = "0.5", features = ["provider-http"] }
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "univ2_bench"
harness = false