2016-01-26 13:14:22 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore client."
|
2016-01-31 11:08:04 +01:00
|
|
|
name = "parity"
|
|
|
|
version = "0.9.0"
|
2016-01-26 13:14:22 +01:00
|
|
|
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"
|
2016-01-27 17:18:38 +01:00
|
|
|
clippy = "0.0.37"
|
2016-01-31 11:08:04 +01:00
|
|
|
ethcore-util = { path = "util" }
|
|
|
|
ethcore = { path = "ethcore" }
|
|
|
|
ethsync = { path = "sync" }
|
|
|
|
ethcore-rpc = { path = "rpc", optional = true }
|
2016-01-26 13:14:22 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
rpc = ["ethcore-rpc"]
|
2016-01-31 11:08:04 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
path = "parity/main.rs"
|
|
|
|
name = "parity"
|