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 = []
|
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 }
|
2022-04-10 06:14:00 +00:00
|
|
|
prost = "0.10"
|
|
|
|
tonic = "0.7"
|
2021-08-05 13:14:34 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-04-10 06:14:00 +00:00
|
|
|
prost-build = "0.10"
|
|
|
|
tonic-build = "0.7"
|