erigon-pulse/Cargo.toml
alex.sharov f048b64318 Squashed 'interfaces/' content from commit 156e93e
git-subtree-dir: interfaces
git-subtree-split: 156e93ea05f776e36f89e0827d8e4ef77905bb79
2021-07-09 20:21:13 +07:00

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.11", default-features = false }
once_cell = { version = "1", optional = true }
prost = "0.7"
serde = { version = "1", features = ["derive"], optional = true }
toml = { version = "0.5", optional = true }
tonic = "0.4"
[build-dependencies]
prost-build = "0.7"
tonic-build = "0.4"