61 lines
1.4 KiB
TOML
61 lines
1.4 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"
|
|
syntex = "*"
|
|
serde_codegen = "0.7.0"
|
|
"ethcore-ipc-codegen" = { path = "ipc/codegen" }
|
|
|
|
[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"
|
|
num_cpus = "0.2"
|
|
number_prefix = "0.2"
|
|
rpassword = "0.2.1"
|
|
clippy = { version = "0.0.63", 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 }
|
|
ethcore-webapp = { path = "webapp", optional = true }
|
|
semver = "0.2"
|
|
ethcore-ipc-nano = { path = "ipc/nano" }
|
|
"ethcore-ipc" = { path = "ipc/rpc" }
|
|
bincode = "*"
|
|
serde = "0.7.0"
|
|
|
|
[dependencies.hyper]
|
|
version = "0.8"
|
|
default-features = false
|
|
|
|
[features]
|
|
default = ["rpc", "webapp"]
|
|
rpc = ["ethcore-rpc"]
|
|
webapp = ["ethcore-webapp"]
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev", "ethminer/dev",
|
|
"ethcore-webapp/dev"]
|
|
travis-beta = ["ethcore/json-tests"]
|
|
travis-nightly = ["ethcore/json-tests", "dev"]
|
|
|
|
[[bin]]
|
|
path = "parity/main.rs"
|
|
name = "parity"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
lto = false
|