-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (56 loc) · 2.42 KB
/
Copy pathCargo.toml
File metadata and controls
63 lines (56 loc) · 2.42 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 = "univ4-exex-indexer"
version = "0.3.0"
edition = "2021"
[dependencies]
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0", features = ["full", "cli"] }
reth-exex = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-execution-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0", features = ["alloy-compat"] }
reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-rpc = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-rpc-convert = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-rpc-eth-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-rpc-server-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-tasks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
reth-tracing = { git = "https://github.com/paradigmxyz/reth", tag = "v1.6.0" }
alloy = { version = "1.0.23", features = ["sol-types"] }
alloy-consensus = "1.0.23"
alloy-eips = "1.0.23"
alloy-rpc-types = "1.0.23"
alloy-rpc-types-beacon = { version = "1.0.23", features = ["ssz"] }
alloy-rpc-types-eth = "1.0.23"
alloy-rpc-types-trace = { version = "1.0.23", default-features = false }
alloy-network = "1.0.23"
async-trait = ">=0.1.88"
chrono = ">=0.4.40"
eyre = ">=0.6.12"
futures = ">=0.3.31"
lazy_static = ">=1.5.0"
primitive-types = { version = ">=0.13.1", features = ["serde"] }
serde = { version = ">=1.0.219", features = ["derive"] }
serde_json = ">=1.0.140"
tokio = { version = ">=1.44.1", features = ["full"] }
clickhouse = { version = "0.12", features = ["time", "uuid"] }
tracing = ">=0.1.41"
hickory-resolver = { version = ">=0.25.0-alpha.5", package = "hickory-resolver" }
time = { version = ">=0.3.39", package = "time" }
[dependencies.tikv-jemallocator]
version = "0.6"
optional = true
[features]
jemalloc = ["tikv-jemallocator"]
[profile.release]
opt-level = 3
codegen-units = 1
lto = "thin"
panic = "abort"
debug = false
[profile.dev]
opt-level = 1
lto = false
debug = true