Newer
Older
[package]
description = "Ethcore client."
license = "GPL-3.0"
authors = ["Ethcore <[email protected]>"]
[dependencies]
log = "0.3"
env_logger = "0.3"
rustc-serialize = "0.3"
ctrlc = { git = "https://github.com/tomusdrw/rust-ctrlc.git" }
fdlimit = { path = "util/fdlimit" }
daemonize = "0.2"
number_prefix = "0.2"
clippy = { version = "0.0.44", optional = true }
ethcore-util = { path = "util" }
ethcore-rpc = { path = "rpc", optional = true }
[dev-dependencies]
ethcore = { path = "ethcore", features = ["dev"]}
ethcore-util = { path = "util", features = ["dev"] }
ethsync = { path = "sync", features = ["dev"] }
ethcore-rpc = { path = "rpc", features = ["dev"]}
Marek Kotewicz
committed
default = ["rpc"]
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev"]
travis-beta = ["ethcore/json-tests"]
travis-nightly = ["ethcore/json-tests", "dev"]
[[bin]]
path = "parity/main.rs"
name = "parity"