openethereum/sync/Cargo.toml

28 lines
522 B
TOML
Raw Normal View History

2016-01-29 15:56:06 +01:00
[package]
description = "Ethcore blockchain sync"
name = "ethsync"
version = "0.9.99"
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]
rustc_version = "0.1"
2016-01-29 15:56:06 +01:00
[dependencies]
ethcore-util = { path = "../util" }
ethcore = { path = "../ethcore" }
2016-02-23 10:47:57 +01:00
clippy = { version = "0.0.44", 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-03-01 21:48:58 +01:00
rustc-serialize = "0.3"
2016-02-12 22:01:23 +01:00
[features]
default = []
dev = ["ethcore/dev", "ethcore-util/dev"]