erigon-pulse/interfaces/Cargo.toml

28 lines
613 B
TOML

[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"]
[dependencies]
arrayref = "0.3"
ethereum-types = { version = "0.12", default-features = false }
once_cell = { version = "1", optional = true }
prost = "0.8"
serde = { version = "1", features = ["derive"], optional = true }
toml = { version = "0.5", optional = true }
tonic = "0.5"
[build-dependencies]
prost-build = "0.8"
tonic-build = "0.5"