88997801d0
* Bumping clippy * Fixing warnings * Fix the "fix"
92 lines
2.2 KiB
TOML
92 lines
2.2 KiB
TOML
[package]
|
|
description = "Ethcore client."
|
|
name = "parity"
|
|
version = "1.4.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.1"
|
|
ethcore-ipc-codegen = { path = "ipc/codegen" }
|
|
ethcore-ipc-tests = { path = "ipc/tests" }
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
rustc-serialize = "0.3"
|
|
docopt = "0.6"
|
|
time = "0.1"
|
|
num_cpus = "0.2"
|
|
number_prefix = "0.2"
|
|
rpassword = "0.2.1"
|
|
semver = "0.2"
|
|
ansi_term = "0.7"
|
|
lazy_static = "0.2"
|
|
regex = "0.1"
|
|
isatty = "0.1"
|
|
toml = "0.2"
|
|
serde = "0.8.0"
|
|
serde_json = "0.8.0"
|
|
hyper = { version = "0.9", default-features = false }
|
|
ctrlc = { git = "https://github.com/ethcore/rust-ctrlc.git" }
|
|
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
|
|
fdlimit = { path = "util/fdlimit" }
|
|
ethcore = { path = "ethcore" }
|
|
ethcore-util = { path = "util" }
|
|
ethsync = { path = "sync" }
|
|
ethcore-io = { path = "util/io" }
|
|
ethcore-devtools = { path = "devtools" }
|
|
ethcore-rpc = { path = "rpc" }
|
|
ethcore-signer = { path = "signer" }
|
|
ethcore-ipc-nano = { path = "ipc/nano" }
|
|
ethcore-ipc = { path = "ipc/rpc" }
|
|
ethcore-ipc-hypervisor = { path = "ipc/hypervisor" }
|
|
ethcore-logger = { path = "logger" }
|
|
rlp = { path = "util/rlp" }
|
|
ethcore-stratum = { path = "stratum" }
|
|
ethcore-dapps = { path = "dapps", optional = true }
|
|
clippy = { version = "0.0.96", optional = true}
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.2"
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
daemonize = "0.2"
|
|
|
|
[features]
|
|
default = ["ui-precompiled"]
|
|
|
|
ui = [
|
|
"dapps",
|
|
"ethcore-dapps/ui",
|
|
"ethcore-signer/ui",
|
|
]
|
|
ui-precompiled = [
|
|
"dapps",
|
|
"ethcore-signer/ui-precompiled",
|
|
"ethcore-dapps/ui-precompiled",
|
|
]
|
|
|
|
dapps = ["ethcore-dapps"]
|
|
ipc = ["ethcore/ipc", "ethsync/ipc"]
|
|
jit = ["ethcore/jit"]
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev", "ethcore-dapps/dev", "ethcore-signer/dev"]
|
|
json-tests = ["ethcore/json-tests"]
|
|
test-heavy = ["ethcore/test-heavy"]
|
|
stratum = ["ipc"]
|
|
ethkey-cli = ["ethcore/ethkey-cli"]
|
|
ethstore-cli = ["ethcore/ethstore-cli"]
|
|
evm-debug = ["ethcore/evm-debug"]
|
|
evm-debug-tests = ["ethcore/evm-debug-tests"]
|
|
slow-blocks = ["ethcore/slow-blocks"]
|
|
|
|
[[bin]]
|
|
path = "parity/main.rs"
|
|
name = "parity"
|
|
|
|
[profile.release]
|
|
debug = false
|
|
lto = false
|
|
|