summaryrefslogtreecommitdiff
path: root/eth-wire/Cargo.toml
blob: c5981b5b07f7b2ff3f43ffa7026f975750830393 (plain)
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
[package]
name = "eth-wire"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
rust-version = "1.63.0"

[features]
# Enable random failures
fail = []

[dependencies]
# Cli args
clap = { version = "=4.0.32", features = ["derive"] }
clap_lex = "=0.3.0"
# Serialization library
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
serde_repr = "0.1.10"
hex = "0.4.3"
# Ethereum serializable types
ethereum-types = { version = "0.14.1", default-features = false, features = [
    "serialize",
] }
# Error macros
thiserror = "1.0.38"
# Common lib
common = { path = "../common" }