2018-03-13 11:49:57 +01:00
|
|
|
[package]
|
2019-08-12 18:55:11 +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]
|
|
|
|
ansi_term = "0.10"
|
2018-06-25 14:20:44 +02:00
|
|
|
error-chain = { version = "0.12", default-features = false }
|
2018-03-13 11:49:57 +01:00
|
|
|
ethcore = { path = ".." }
|
2019-01-04 14:05:46 +01:00
|
|
|
ethcore-blockchain = { path = "../blockchain" }
|
2021-01-13 18:03:12 +01:00
|
|
|
ethcore-io = { path = "../../runtime/io" }
|
2018-04-10 12:13:49 +02:00
|
|
|
ethcore-sync = { path = "../sync" }
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
|
|
|
kvdb = "0.1"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2018-09-04 20:13:51 +02:00
|
|
|
trace-time = "0.1"
|
2018-03-13 11:49:57 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-01-13 18:03:12 +01:00
|
|
|
ethcore-db = { path = "../../db/db" }
|
2018-06-11 12:26:49 +02:00
|
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|
2018-03-13 11:49:57 +01:00
|
|
|
tempdir = "0.3"
|
2018-09-03 18:40:11 +02:00
|
|
|
kvdb-rocksdb = "0.1.3"
|