27 lines
500 B
TOML
27 lines
500 B
TOML
[package]
|
|
description = "Ethcore client."
|
|
name = "parity"
|
|
version = "0.9.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"
|
|
clippy = "0.0.37"
|
|
ethcore-util = { path = "util" }
|
|
ethcore = { path = "ethcore" }
|
|
ethsync = { path = "sync" }
|
|
ethcore-rpc = { path = "rpc", optional = true }
|
|
|
|
[features]
|
|
rpc = ["ethcore-rpc"]
|
|
|
|
[[bin]]
|
|
path = "parity/main.rs"
|
|
name = "parity"
|