-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (38 loc) · 1.3 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
[package]
name = "exex-avs-operator"
edition = "2021"
version = "0.1.1"
rust-version = "1.82"
license = "MIT"
homepage = "https://docs.wvm.dev"
repository = "https://github.com/weaveVM/hello-world-avs-as-exex"
resolver = "2"
[dependencies]
# Misc
web3 = "0.19.0"
ethers = "2.0.14"
zerocopy = "0.8.7"
async-trait = "0.1.82"
eyre = "0.6"
hex-literal = "0.4.1"
hex = "0.4.3"
serde = "1.0.210"
serde_json = "1.0.128"
futures-util = "0.3"
futures = "0.3"
dotenv = "0.15.0"
once_cell = "1.20.2"
tokio = { version = "1.37.0", features = ["test-util", "full", "sync", "rt-multi-thread", "macros"] }
alloy-provider = { git = "https://github.com/alloy-rs/alloy.git", rev = "cc68b93605f4521c2b0bce1a7efaeff2046cf07c", features = ["ws"] }
# Reth
reth = { git = "https://github.com/paradigmxyz/reth.git" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth.git" }
reth-exex = { git = "https://github.com/paradigmxyz/reth.git" }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth.git" }
reth-tracing = { git = "https://github.com/paradigmxyz/reth.git" }
reth-execution-types = { git = "https://github.com/paradigmxyz/reth.git" }
# testing
reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth.git" }
reth-testing-utils = { git = "https://github.com/paradigmxyz/reth.git" }
[net]
git-fetch-with-cli = true