openethereum/Cargo.toml

41 lines
1.0 KiB
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.99"
2016-01-26 13:14:22 +01:00
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io>"]
build = "build.rs"
[build-dependencies]
rustc_version = "0.1"
2016-01-26 13:14:22 +01:00
[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"
ctrlc = { git = "https://github.com/tomusdrw/rust-ctrlc.git" }
fdlimit = { path = "util/fdlimit" }
daemonize = "0.2"
number_prefix = "0.2"
2016-02-23 10:47:57 +01:00
clippy = { version = "0.0.44", optional = true }
2016-01-31 11:08:04 +01:00
ethcore = { path = "ethcore" }
ethcore-util = { path = "util" }
2016-01-31 11:08:04 +01:00
ethsync = { path = "sync" }
2016-02-19 16:09:31 +01:00
ethcore-devtools = { path = "devtools" }
ethcore-rpc = { path = "rpc", optional = true }
2016-03-10 09:26:04 +01:00
rpassword = "0.1"
2016-01-26 13:14:22 +01:00
[features]
default = ["rpc"]
2016-01-26 13:14:22 +01:00
rpc = ["ethcore-rpc"]
dev = ["ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev"]
dev-clippy = ["clippy", "ethcore/clippy", "ethcore-util/clippy", "ethsync/clippy", "ethcore-rpc/clippy"]
travis-beta = ["ethcore/json-tests"]
2016-03-10 09:35:46 +01:00
travis-nightly = ["ethcore/json-tests", "dev-clippy", "dev"]
2016-01-31 11:08:04 +01:00
[[bin]]
path = "parity/main.rs"
name = "parity"