openethereum/sync/Cargo.toml

23 lines
437 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"]
[lib]
[dependencies]
ethcore-util = { path = "../util" }
ethcore = { path = ".." }
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-02-12 22:01:23 +01:00
[features]
default = []
2016-02-23 10:47:57 +01:00
dev = ["clippy", "ethcore/dev", "ethcore-util/dev"]