2016-01-29 15:56:06 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore blockchain sync"
|
|
|
|
name = "ethsync"
|
2017-10-12 23:44:02 +02:00
|
|
|
version = "1.9.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]
|
|
|
|
ethcore-util = { path = "../util" }
|
2017-09-06 20:47:45 +02:00
|
|
|
ethcore-bytes = { path = "../util/bytes" }
|
2017-09-04 16:36:49 +02:00
|
|
|
ethcore-bigint = { path = "../util/bigint" }
|
2016-08-05 10:32:04 +02:00
|
|
|
ethcore-network = { path = "../util/network" }
|
|
|
|
ethcore-io = { path = "../util/io" }
|
2016-12-08 19:52:48 +01:00
|
|
|
ethcore-light = { path = "../ethcore/light"}
|
2016-03-04 19:49:57 +01:00
|
|
|
ethcore = { path = "../ethcore" }
|
2016-09-01 14:49:12 +02:00
|
|
|
rlp = { path = "../util/rlp" }
|
2017-08-31 11:35:41 +02:00
|
|
|
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-11-28 12:20:57 +01:00
|
|
|
clippy = { version = "0.0.103", optional = true}
|
2016-01-29 15:56:06 +01:00
|
|
|
log = "0.3"
|
2017-03-28 19:06:08 +02:00
|
|
|
env_logger = "0.4"
|
2016-02-02 14:54:46 +01:00
|
|
|
time = "0.1.34"
|
2016-02-05 18:34:08 +01:00
|
|
|
rand = "0.3.13"
|
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"] }
|
2017-03-28 19:06:08 +02:00
|
|
|
parking_lot = "0.4"
|
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" }
|
|
|
|
ethcore-devtools = { path = "../devtools" }
|
|
|
|
|
2016-02-12 22:01:23 +01:00
|
|
|
[features]
|
2016-12-08 19:52:48 +01:00
|
|
|
default = []
|
2016-05-31 20:54:02 +02:00
|
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev"]
|