46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
description = "Ethcore client."
|
|
name = "parity"
|
|
version = "1.1.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.1"
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
rustc-serialize = "0.3"
|
|
docopt = "0.6"
|
|
time = "0.1"
|
|
ctrlc = { git = "https://github.com/tomusdrw/rust-ctrlc.git" }
|
|
fdlimit = { path = "util/fdlimit" }
|
|
daemonize = "0.2"
|
|
number_prefix = "0.2"
|
|
rpassword = "0.1"
|
|
clippy = { version = "0.0.50", optional = true }
|
|
ethcore = { path = "ethcore" }
|
|
ethcore-util = { path = "util" }
|
|
ethsync = { path = "sync" }
|
|
ethminer = { path = "miner" }
|
|
ethcore-devtools = { path = "devtools" }
|
|
ethcore-rpc = { path = "rpc", optional = true }
|
|
ethjson = { path = "json" }
|
|
|
|
[features]
|
|
default = ["rpc"]
|
|
rpc = ["ethcore-rpc"]
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev", "ethminer/dev"]
|
|
travis-beta = ["ethcore/json-tests"]
|
|
travis-nightly = ["ethcore/json-tests", "dev"]
|
|
|
|
[[bin]]
|
|
path = "parity/main.rs"
|
|
name = "parity"
|
|
|
|
[profile.release]
|
|
debug = false
|
|
lto = false
|