openethereum/Cargo.toml

30 lines
741 B
TOML
Raw Normal View History

2016-01-26 13:14:22 +01:00
[package]
description = "Ethcore client."
2016-01-31 11:08:04 +01:00
name = "parity"
version = "0.9.0"
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"
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" }
clippy = "0.0.39"
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" }
target_info = "0.1"
2016-01-26 13:14:22 +01:00
[features]
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"