openethereum/sync/Cargo.toml

38 lines
928 B
TOML
Raw Normal View History

2016-01-29 15:56:06 +01:00
[package]
description = "Ethcore blockchain sync"
name = "ethsync"
2017-01-10 15:41:59 +01:00
version = "1.6.0"
2016-01-29 15:56:06 +01:00
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
2016-01-29 15:56:06 +01:00
[lib]
[build-dependencies]
ethcore-ipc-codegen = { path = "../ipc/codegen" }
2016-01-29 15:56:06 +01:00
[dependencies]
ethcore-util = { path = "../util" }
ethcore-network = { path = "../util/network" }
ethcore-io = { path = "../util/io" }
2016-12-08 19:52:48 +01:00
ethcore-light = { path = "../ethcore/light"}
ethcore = { path = "../ethcore" }
2016-09-01 14:49:12 +02:00
rlp = { path = "../util/rlp" }
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"
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"
ethcore-ipc = { path = "../ipc/rpc" }
2016-12-11 17:13:26 +01:00
semver = "0.5"
ethcore-ipc-nano = { path = "../ipc/nano" }
2016-12-06 19:23:15 +01:00
ethcore-devtools = { path = "../devtools" }
ethkey = { path = "../ethkey" }
parking_lot = "0.3"
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"]
2016-12-08 19:52:48 +01:00
ipc = ["ethcore-light/ipc"]