2021-08-05 13:14:34 +00:00
|
|
|
[package]
|
|
|
|
name = "ethereum-interfaces"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Artem Vorotnikov <artem@vorotnikov.me>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
consensus = []
|
|
|
|
sentry = []
|
|
|
|
remotekv = []
|
|
|
|
snapshotsync = []
|
|
|
|
txpool = []
|
|
|
|
db = ["once_cell", "serde", "toml"]
|
2021-09-26 12:47:11 +00:00
|
|
|
web3 = []
|
2021-08-05 13:14:34 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
arrayref = "0.3"
|
2022-02-09 06:49:31 +00:00
|
|
|
ethereum-types = { version = "0.13", default-features = false }
|
|
|
|
ethnum = { version = "1", default-features = false }
|
2021-08-05 13:14:34 +00:00
|
|
|
once_cell = { version = "1", optional = true }
|
2021-11-14 04:08:45 +00:00
|
|
|
prost = "0.9"
|
2021-08-05 13:14:34 +00:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
|
|
toml = { version = "0.5", optional = true }
|
2021-11-14 04:08:45 +00:00
|
|
|
tonic = "0.6"
|
2021-08-05 13:14:34 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2021-11-14 04:08:45 +00:00
|
|
|
prost-build = "0.9"
|
|
|
|
tonic-build = "0.6"
|