2016-01-26 13:14:22 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore client."
|
2016-01-31 11:08:04 +01:00
|
|
|
name = "parity"
|
2016-02-16 11:40:58 +01:00
|
|
|
version = "0.9.99"
|
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"
|
2016-02-13 22:58:41 +01:00
|
|
|
docopt = "0.6"
|
|
|
|
docopt_macros = "0.6"
|
2016-02-10 16:55:15 +01:00
|
|
|
ctrlc = { git = "https://github.com/tomusdrw/rust-ctrlc.git" }
|
2016-02-13 22:58:41 +01:00
|
|
|
clippy = "0.0.41"
|
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-02-05 13:49:36 +01:00
|
|
|
fdlimit = { path = "util/fdlimit" }
|
2016-02-09 15:51:48 +01:00
|
|
|
target_info = "0.1"
|
2016-01-26 13:14:22 +01:00
|
|
|
|
|
|
|
[features]
|
2016-02-01 16:03:43 +01:00
|
|
|
default = ["rpc"]
|
2016-01-26 13:14:22 +01:00
|
|
|
rpc = ["ethcore-rpc"]
|
2016-01-31 11:08:04 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
path = "parity/main.rs"
|
|
|
|
name = "parity"
|