-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
53 lines (46 loc) · 1.13 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
[package]
name = "oracle"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
publish.workspace = true
[dependencies]
# reth
reth-discv5.workspace = true
reth-eth-wire.workspace = true
reth-exex.workspace = true
reth-network-api.workspace = true
reth-network-peers.workspace = true
reth-network.workspace = true
reth-node-api.workspace = true
reth-node-ethereum.workspace = true
reth-primitives.workspace = true
reth-tracing.workspace = true
reth.workspace = true
reth-tokio-util = { git = "https://github.com/paradigmxyz/reth" }
# alloy
alloy-primitives.workspace = true
alloy-rlp.workspace = true
alloy-rpc-types.workspace = true
alloy-signer-local.workspace = true
alloy-signer.workspace = true
# networking
discv5.workspace = true
enr = "0.12"
# async
futures.workspace = true
tokio-stream.workspace = true
tokio-tungstenite.workspace = true
tokio.workspace = true
# misc
clap = "4"
eyre.workspace = true
serde.workspace = true
serde_json.workspace = true
uuid = "1.10.0"
rand = "0.8.5"
thiserror = "1"
[dev-dependencies]
reth-exex-test-utils.workspace = true
reth-testing-utils.workspace = true