2018-03-13 11:49:57 +01:00
|
|
|
[package]
|
2019-06-25 08:15:13 +02:00
|
|
|
description = "Parity Ethereum (EthCore) Client & Network Service Creation & Registration with the I/O Subsystem"
|
2018-03-13 11:49:57 +01:00
|
|
|
name = "ethcore-service"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
2019-06-27 13:34:40 +02:00
|
|
|
ansi_term = "0.11"
|
2019-08-28 10:09:42 +02:00
|
|
|
client-traits = { path = "../client-traits" }
|
2019-09-03 11:29:25 +02:00
|
|
|
common-types = { path = "../types" }
|
2018-03-13 11:49:57 +01:00
|
|
|
ethcore = { path = ".." }
|
2019-01-04 14:05:46 +01:00
|
|
|
ethcore-blockchain = { path = "../blockchain" }
|
2018-03-13 11:49:57 +01:00
|
|
|
ethcore-io = { path = "../../util/io" }
|
2018-04-09 16:14:33 +02:00
|
|
|
ethcore-private-tx = { path = "../private-tx" }
|
2018-04-10 12:13:49 +02:00
|
|
|
ethcore-sync = { path = "../sync" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2019-12-20 12:27:38 +01:00
|
|
|
kvdb = "0.2"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2019-09-03 11:29:25 +02:00
|
|
|
snapshot = { path = "../snapshot" }
|
2019-08-23 15:32:58 +02:00
|
|
|
spec = { path = "../spec" }
|
2018-09-04 20:13:51 +02:00
|
|
|
trace-time = "0.1"
|
2018-03-13 11:49:57 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-06-11 12:26:49 +02:00
|
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|
2019-09-03 11:29:25 +02:00
|
|
|
ethcore-db = { path = "../db" }
|
2019-12-20 12:27:38 +01:00
|
|
|
kvdb-rocksdb = "0.3.0"
|
2019-09-03 11:29:25 +02:00
|
|
|
tempdir = "0.3"
|