erigon-pulse/Cargo.toml
Richard Patel 551949613b Squashed 'interfaces/' content from commit bcd1e34
git-subtree-dir: interfaces
git-subtree-split: bcd1e3499a0c8d8d84ac1f8ddd5a9b12d6c98a8c
2021-08-05 15:14:34 +02: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.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"