-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (48 loc) · 2 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
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 = "univ3-pool-states"
version = "0.1.0"
edition = "2021"
[dependencies]
db-interfaces = { git = "https://github.com/SorellaLabs/db-interfaces" }
# clickhouse
clickhouse = { git = "https://github.com/SorellaLabs/clickhouse.rs", branch = "master", features = ["time"] }
# reth
reth-primitives = { git = "https://github.com/paradigmxyz/reth", package = "reth-primitives", rev = "ac29b4b" }
reth-rpc-api = { git = "https://github.com/paradigmxyz/reth", package = "reth-rpc-api", rev = "ac29b4b" }
reth-rpc = { git = "https://github.com/paradigmxyz/reth", package = "reth-rpc", rev = "ac29b4b" }
reth-interfaces = { git = "https://github.com/paradigmxyz/reth", package = "reth-interfaces", rev = "ac29b4b" }
reth-provider = { git = "https://github.com/paradigmxyz/reth", package = "reth-provider", rev = "ac29b4b" }
reth-revm = { git = "https://github.com/paradigmxyz/reth", package = "reth-revm", rev = "ac29b4b" }
reth-tasks = { git = "https://github.com/paradigmxyz/reth", package = "reth-tasks", rev = "ac29b4b" }
reth-api-libmdbx = { git = "https://github.com/jnoorchashm37/reth-api-libmdbx" }
# alloy
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy.git", rev = "39b8695" }
alloy-rpc-types-trace = { git = "https://github.com/alloy-rs/alloy.git", rev = "39b8695" }
alloy-sol-macro = { version = "0.7.0", features = ["json"] }
alloy-sol-types = { version = "0.7.0", features = ["json"] }
alloy-primitives = { version = "0.7.0", features = ["rlp"] }
# error handling
eyre = "0.6.5"
# serde
serde = "1.0"
# cli
clap = { version = "4.5", features = ["derive"] }
# async
async-trait = "0.1.73"
tokio = { version = "1.28.2", features = ["full"] }
futures = "0.3.28"
tokio-stream = "0.1.14"
# misc
dotenv = "0.15.0"
rayon = "1.10.0"
malachite = "0.4.0"
paste = "1.0"
thiserror = "1.0"
itertools = "0.11.0"
# tracing
tracing = "0.1.0"
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt", "ansi"] }
[build-dependencies]
dotenv = "0.15.0"
[dev-dependencies]
time = "0.3"