openethereum/sync/Cargo.toml

33 lines
737 B
TOML
Raw Normal View History

2016-01-29 15:56:06 +01:00
[package]
description = "Ethcore blockchain sync"
name = "ethsync"
2016-06-25 10:32:05 +02:00
version = "1.3.0"
2016-01-29 15:56:06 +01:00
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.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" }
ethcore = { path = "../ethcore" }
clippy = { version = "0.0.80", 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" }
semver = "0.2"
ethcore-ipc-nano = { path = "../ipc/nano" }
parking_lot = "0.2.6"
2016-02-12 22:01:23 +01:00
[features]
default = []
2016-05-31 20:54:02 +02:00
dev = ["clippy", "ethcore/dev", "ethcore-util/dev"]