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"
|
2016-02-23 20:14:37 +01:00
|
|
|
time = "0.1"
|
2016-02-10 16:55:15 +01:00
|
|
|
ctrlc = { git = "https://github.com/tomusdrw/rust-ctrlc.git" }
|
2016-02-23 10:47:57 +01:00
|
|
|
clippy = { version = "0.0.44", optional = true }
|
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-18 13:10:04 +01:00
|
|
|
daemonize = "0.2"
|
2016-02-19 16:09:31 +01:00
|
|
|
ethcore-devtools = { path = "devtools" }
|
2016-02-25 14:09:39 +01:00
|
|
|
number_prefix = "0.2"
|
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-02-12 22:01:23 +01:00
|
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev"]
|
2016-02-19 01:25:06 +01:00
|
|
|
travis-beta = ["ethcore/json-tests"]
|
|
|
|
travis-nightly = ["ethcore/json-tests", "dev"]
|
2016-01-31 11:08:04 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
path = "parity/main.rs"
|
|
|
|
name = "parity"
|