-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
46 lines (41 loc) · 1.67 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
[package]
name = "relay"
version = "0.1.0"
authors = ["Dan Cline <danieledwardcline@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/ranger"
repository = "https://github.com/Rjected/ranger"
homepage = "https://docs.rs/ranger"
description = """
Ranger uses akula to listen to the network and provide subscription APIs for
listening to and processing network messages, as well as converting them to
ethers-rs types
"""
[dependencies]
async-trait = "0.1"
tracing = { version = "0.1.29", default-features = false }
futures-core = { version = "0.3.21" }
tokio-stream = { version = "0.1.9", features = ["sync"] }
parking_lot = { version = "0.12.0", default-features = false, features = ["deadlock_detection"] }
bytes = { version = "1.1", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false }
thiserror = "1"
tokio = { version = "1.20", features = ["full", "rt"] }
hex = { version = "0.4" }
devp2p-rs = { git = "https://github.com/rjected/devp2p-rs" }
ethereum-forkid = { version = "0.11.0", default-features = false }
ethp2p = { git = "https://github.com/rjected/ethp2p" }
anvil-core = { git = "https://github.com/foundry-rs/foundry" }
open-fastrlp = { version = "0.1.4", features = ["alloc", "derive", "std"] }
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["abigen", "legacy", "ws"] }
foundry-config = { git = "http://github.com/foundry-rs/foundry" }
# for the capability name
arrayvec = { version = "0.7" }
# for the tower service
tower = { version = "0.4", features = ["full"] }
[dev-dependencies]
ruint = { version = "1.3.0", features = ["fastrlp"] }
hex-literal = "0.3.4"
[lib]