Cargo.toml 741 B
Newer Older
[package]
description = "Ethcore client."
Marek Kotewicz's avatar
Marek Kotewicz committed
name = "parity"
version = "0.9.0"
license = "GPL-3.0"
authors = ["Ethcore <[email protected]>"]

[dependencies]
log = "0.3"
env_logger = "0.3"
rustc-serialize = "0.3"
docopt = { git = "https://github.com/NikVolf/docopt.rs.git" }
docopt_macros = { git = "https://github.com/NikVolf/docopt.rs.git", path = "docopt_macros" }
ctrlc = { git = "https://github.com/tomusdrw/rust-ctrlc.git" }
Marek Kotewicz's avatar
Marek Kotewicz committed
ethcore-util = { path = "util" }
ethcore = { path = "ethcore" }
ethsync = { path = "sync" }
ethcore-rpc = { path = "rpc", optional = true }
arkpar's avatar
arkpar committed
fdlimit = { path = "util/fdlimit" }
rpc = ["ethcore-rpc"]
Marek Kotewicz's avatar
Marek Kotewicz committed

[[bin]]
path = "parity/main.rs"
name = "parity"