2016-01-29 15:56:06 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore blockchain sync"
|
|
|
|
name = "ethsync"
|
2016-08-09 11:40:57 +02:00
|
|
|
version = "1.4.0"
|
2016-01-29 15:56:06 +01:00
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
2016-07-14 12:07:33 +02:00
|
|
|
build = "build.rs"
|
2016-01-29 15:56:06 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
2016-07-14 12:07:33 +02:00
|
|
|
[build-dependencies]
|
|
|
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
|
|
|
|
2016-01-29 15:56:06 +01:00
|
|
|
[dependencies]
|
|
|
|
ethcore-util = { path = "../util" }
|
2016-08-05 10:32:04 +02:00
|
|
|
ethcore-network = { path = "../util/network" }
|
|
|
|
ethcore-io = { path = "../util/io" }
|
2016-03-04 19:49:57 +01:00
|
|
|
ethcore = { path = "../ethcore" }
|
2016-09-01 14:49:12 +02:00
|
|
|
rlp = { path = "../util/rlp" }
|
2016-10-27 08:28:12 +02:00
|
|
|
clippy = { version = "0.0.96", optional = true}
|
2016-01-29 15:56:06 +01:00
|
|
|
log = "0.3"
|
|
|
|
env_logger = "0.3"
|
2016-02-02 14:54:46 +01:00
|
|
|
time = "0.1.34"
|
2016-02-05 18:34:08 +01:00
|
|
|
rand = "0.3.13"
|
2016-02-24 22:37:28 +01:00
|
|
|
heapsize = "0.3"
|
2016-07-14 12:07:33 +02:00
|
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
|
|
semver = "0.2"
|
|
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
2016-10-19 18:35:56 +02:00
|
|
|
parking_lot = "0.3"
|
2016-02-12 22:01:23 +01:00
|
|
|
|
|
|
|
[features]
|
2016-10-04 18:20:16 +02:00
|
|
|
default = ["ipc"]
|
2016-05-31 20:54:02 +02:00
|
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev"]
|
2016-10-04 18:20:16 +02:00
|
|
|
ipc = []
|