2019-08-13 12:33:34 +02:00
|
|
|
[package]
|
|
|
|
description = "Trait definitions relative the ethereum client"
|
|
|
|
name = "client-traits"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-08-15 17:59:22 +02:00
|
|
|
account-state = { path = "../account-state" }
|
|
|
|
blockchain = { package = "ethcore-blockchain", path = "../blockchain" }
|
|
|
|
bytes = { package = "parity-bytes", version = "0.1.0" }
|
|
|
|
call-contract = { package = "ethcore-call-contract", path = "../call-contract" }
|
2019-08-13 12:33:34 +02:00
|
|
|
common-types = { path = "../types" }
|
2019-08-15 17:59:22 +02:00
|
|
|
ethcore-db = { path = "../db" }
|
|
|
|
ethcore-miner = { path = "../../miner" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2020-02-07 17:23:45 +01:00
|
|
|
kvdb = "0.4.0"
|
2019-10-03 15:15:25 +02:00
|
|
|
registrar = { path = "../../util/registrar" }
|
2019-08-15 17:59:22 +02:00
|
|
|
stats = { path = "../../util/stats" }
|
|
|
|
trace = { path = "../trace" }
|
|
|
|
vm = { path = "../vm" }
|