openethereum/bin/Cargo.toml

23 lines
463 B
TOML
Raw Normal View History

2016-01-26 13:14:22 +01:00
[package]
description = "Ethcore client."
name = "ethcore-client"
version = "0.1.0"
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io>"]
[dependencies]
log = "0.3"
env_logger = "0.3"
rustc-serialize = "0.3"
docopt = "0.6"
docopt_macros = "0.6"
ctrlc = "1.0"
ethcore-util = { path = "../util" }
ethcore-rpc = { path = "../rpc", optional = true }
ethcore = { path = ".." }
2016-01-29 15:56:06 +01:00
ethsync = { path = "../sync" }
clippy = "0.0.37"
2016-01-26 13:14:22 +01:00
[features]
rpc = ["ethcore-rpc"]