2018-03-13 11:49:57 +01:00
|
|
|
[package]
|
|
|
|
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 = ".." }
|
|
|
|
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" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
kvdb = { git = "https://github.com/paritytech/parity-common" }
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2018-03-13 11:49:57 +01:00
|
|
|
stop-guard = { path = "../../util/stop-guard" }
|
2018-05-09 08:49:34 +02:00
|
|
|
trace-time = { path = "../../util/trace-time" }
|
2018-03-13 11:49:57 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-06-11 12:26:49 +02:00
|
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|
2018-03-13 11:49:57 +01:00
|
|
|
tempdir = "0.3"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common" }
|