2016-01-26 13:14:22 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore client."
|
2016-01-31 11:08:04 +01:00
|
|
|
name = "parity"
|
2016-08-09 11:40:57 +02:00
|
|
|
version = "1.4.0"
|
2016-01-26 13:14:22 +01:00
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
2016-03-07 14:33:00 +01:00
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = "0.1"
|
2016-06-01 17:59:21 +02:00
|
|
|
ethcore-ipc-codegen = { path = "ipc/codegen" }
|
2016-08-01 15:32:07 +02:00
|
|
|
ethcore-ipc-tests = { path = "ipc/tests" }
|
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"
|
2016-03-22 19:12:17 +01:00
|
|
|
num_cpus = "0.2"
|
2016-03-07 11:40:44 +01:00
|
|
|
number_prefix = "0.2"
|
2016-04-17 01:50:04 +02:00
|
|
|
rpassword = "0.2.1"
|
2016-07-13 11:48:04 +02:00
|
|
|
semver = "0.2"
|
|
|
|
ansi_term = "0.7"
|
|
|
|
lazy_static = "0.2"
|
|
|
|
regex = "0.1"
|
2016-07-15 10:11:14 +02:00
|
|
|
isatty = "0.1"
|
2016-09-10 11:37:14 +02:00
|
|
|
toml = "0.2"
|
2016-10-22 20:07:12 +02:00
|
|
|
serde = "0.8.0"
|
|
|
|
serde_json = "0.8.0"
|
|
|
|
hyper = { version = "0.9", default-features = false }
|
2016-07-13 11:48:04 +02:00
|
|
|
ctrlc = { git = "https://github.com/ethcore/rust-ctrlc.git" }
|
2016-10-22 20:07:12 +02:00
|
|
|
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
|
2016-07-13 11:48:04 +02:00
|
|
|
fdlimit = { path = "util/fdlimit" }
|
2016-01-31 11:08:04 +01:00
|
|
|
ethcore = { path = "ethcore" }
|
2016-03-07 11:40:44 +01:00
|
|
|
ethcore-util = { path = "util" }
|
2016-01-31 11:08:04 +01:00
|
|
|
ethsync = { path = "sync" }
|
2016-08-05 10:32:04 +02:00
|
|
|
ethcore-io = { path = "util/io" }
|
2016-02-19 16:09:31 +01:00
|
|
|
ethcore-devtools = { path = "devtools" }
|
2016-07-11 17:11:49 +02:00
|
|
|
ethcore-rpc = { path = "rpc" }
|
|
|
|
ethcore-signer = { path = "signer" }
|
2016-04-13 18:03:57 +02:00
|
|
|
ethcore-ipc-nano = { path = "ipc/nano" }
|
2016-05-24 20:30:21 +02:00
|
|
|
ethcore-ipc = { path = "ipc/rpc" }
|
2016-07-09 17:18:34 +02:00
|
|
|
ethcore-ipc-hypervisor = { path = "ipc/hypervisor" }
|
2016-07-20 18:13:56 +02:00
|
|
|
ethcore-logger = { path = "logger" }
|
2016-09-01 14:55:07 +02:00
|
|
|
rlp = { path = "util/rlp" }
|
2016-10-22 20:07:12 +02:00
|
|
|
ethcore-stratum = { path = "stratum" }
|
2016-07-13 11:10:43 +02:00
|
|
|
ethcore-dapps = { path = "dapps", optional = true }
|
2016-10-27 08:28:12 +02:00
|
|
|
clippy = { version = "0.0.96", optional = true}
|
2016-03-28 10:25:19 +02:00
|
|
|
|
2016-06-14 16:12:46 +02:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = "0.2"
|
|
|
|
|
2016-06-13 18:55:24 +02:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
|
|
daemonize = "0.2"
|
|
|
|
|
2016-01-26 13:14:22 +01:00
|
|
|
[features]
|
2016-10-22 20:07:12 +02:00
|
|
|
default = ["ui-precompiled"]
|
|
|
|
|
|
|
|
ui = [
|
|
|
|
"dapps",
|
|
|
|
"ethcore-dapps/ui",
|
|
|
|
"ethcore-signer/ui",
|
|
|
|
]
|
|
|
|
ui-precompiled = [
|
|
|
|
"dapps",
|
|
|
|
"ethcore-signer/ui-precompiled",
|
|
|
|
"ethcore-dapps/ui-precompiled",
|
|
|
|
]
|
|
|
|
|
2016-05-26 18:21:15 +02:00
|
|
|
dapps = ["ethcore-dapps"]
|
2016-10-04 18:20:16 +02:00
|
|
|
ipc = ["ethcore/ipc", "ethsync/ipc"]
|
2016-10-04 18:22:26 +02:00
|
|
|
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"]
|
2016-10-26 13:53:47 +02:00
|
|
|
test-heavy = ["ethcore/test-heavy"]
|
2016-10-04 18:22:26 +02:00
|
|
|
stratum = ["ipc"]
|
|
|
|
ethkey-cli = ["ethcore/ethkey-cli"]
|
|
|
|
ethstore-cli = ["ethcore/ethstore-cli"]
|
|
|
|
evm-debug = ["ethcore/evm-debug"]
|
2016-10-03 23:29:46 +02:00
|
|
|
evm-debug-tests = ["ethcore/evm-debug-tests"]
|
|
|
|
slow-blocks = ["ethcore/slow-blocks"]
|
2016-01-31 11:08:04 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
path = "parity/main.rs"
|
|
|
|
name = "parity"
|
2016-02-21 19:46:29 +01:00
|
|
|
|
|
|
|
[profile.release]
|
2016-10-02 09:40:54 +02:00
|
|
|
debug = false
|
2016-02-29 19:49:29 +01:00
|
|
|
lto = false
|
2016-08-05 10:32:04 +02:00
|
|
|
|