2016-01-29 15:56:06 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore blockchain sync"
|
|
|
|
name = "ethsync"
|
2018-03-03 22:02:33 +01:00
|
|
|
version = "1.11.0"
|
2016-01-29 15:56:06 +01:00
|
|
|
license = "GPL-3.0"
|
2016-12-11 19:14:42 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-01-29 15:56:06 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
2017-09-06 20:47:45 +02:00
|
|
|
ethcore-bytes = { path = "../util/bytes" }
|
2016-08-05 10:32:04 +02:00
|
|
|
ethcore-network = { path = "../util/network" }
|
2018-03-05 11:56:35 +01:00
|
|
|
ethcore-network-devp2p = { path = "../util/network-devp2p" }
|
2016-08-05 10:32:04 +02:00
|
|
|
ethcore-io = { path = "../util/io" }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethcore-light = { path = "../ethcore/light" }
|
|
|
|
ethcore-transaction = { path = "../ethcore/transaction" }
|
2016-03-04 19:49:57 +01:00
|
|
|
ethcore = { path = "../ethcore" }
|
2018-02-09 09:32:06 +01:00
|
|
|
ethereum-types = "0.2"
|
2018-01-10 13:35:18 +01:00
|
|
|
plain_hasher = { path = "../util/plain_hasher" }
|
2016-09-01 14:49:12 +02:00
|
|
|
rlp = { path = "../util/rlp" }
|
2017-11-10 19:04:55 +01:00
|
|
|
keccak-hash = { path = "../util/hash" }
|
2017-09-03 09:11:14 +02:00
|
|
|
triehash = { path = "../util/triehash" }
|
2017-10-10 20:01:27 +02:00
|
|
|
kvdb = { path = "../util/kvdb" }
|
|
|
|
macros = { path = "../util/macros" }
|
2016-01-29 15:56:06 +01:00
|
|
|
log = "0.3"
|
2017-03-28 19:06:08 +02:00
|
|
|
env_logger = "0.4"
|
2018-02-09 09:32:06 +01:00
|
|
|
rand = "0.4"
|
2017-05-24 12:31:33 +02:00
|
|
|
heapsize = "0.4"
|
2017-03-28 19:06:08 +02:00
|
|
|
semver = "0.6"
|
2017-05-24 12:31:33 +02:00
|
|
|
smallvec = { version = "0.4", features = ["heapsizeof"] }
|
2018-01-19 13:46:11 +01:00
|
|
|
parking_lot = "0.5"
|
2017-07-28 19:06:39 +02:00
|
|
|
ipnetwork = "0.12.6"
|
2016-02-12 22:01:23 +01:00
|
|
|
|
2017-10-12 15:36:27 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
ethkey = { path = "../ethkey" }
|
|
|
|
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
|