mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-04 01:54:28 +00:00
fbbcc5f48a
* Remove interfaces for replacement * Squashed 'interfaces/' content from commit 8d42c07 git-subtree-dir: interfaces git-subtree-split: 8d42c078a1d5196a02b26b1397716f44974d1bf7 * Regenerate peerId to be 512 bits * Fixup Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro.local>
30 lines
678 B
TOML
30 lines
678 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"]
|
|
web3 = []
|
|
|
|
[dependencies]
|
|
arrayref = "0.3"
|
|
ethereum-types = { version = "0.13", default-features = false }
|
|
ethnum = { version = "1", default-features = false }
|
|
once_cell = { version = "1", optional = true }
|
|
prost = "0.10"
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
toml = { version = "0.5", optional = true }
|
|
tonic = "0.7"
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.10"
|
|
tonic-build = "0.7"
|