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-07-13 11:48:04 +02:00
|
|
|
ctrlc = { git = "https://github.com/ethcore/rust-ctrlc.git" }
|
|
|
|
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-06-01 20:32:16 +02:00
|
|
|
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
|
2016-07-13 11:10:43 +02:00
|
|
|
ethcore-dapps = { path = "dapps", optional = true }
|
2016-08-23 10:10:19 +02:00
|
|
|
clippy = { version = "0.0.85", optional = true}
|
2016-08-19 10:20:39 +02:00
|
|
|
ethcore-stratum = { path = "stratum" }
|
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-03-28 10:25:19 +02:00
|
|
|
[dependencies.hyper]
|
2016-08-22 15:16:23 +02:00
|
|
|
version = "0.9"
|
2016-03-28 10:25:19 +02:00
|
|
|
default-features = false
|
2016-03-07 11:40:44 +01:00
|
|
|
|
2016-01-26 13:14:22 +01:00
|
|
|
[features]
|
2016-08-17 15:52:57 +02:00
|
|
|
default = ["ui", "use-precompiled-js", "ipc"]
|
2016-07-14 20:05:57 +02:00
|
|
|
ui = ["dapps", "ethcore-signer/ui"]
|
|
|
|
use-precompiled-js = ["ethcore-dapps/use-precompiled-js", "ethcore-signer/use-precompiled-js"]
|
2016-05-26 18:21:15 +02:00
|
|
|
dapps = ["ethcore-dapps"]
|
2016-07-20 18:13:56 +02:00
|
|
|
ipc = ["ethcore/ipc"]
|
2016-08-02 18:53:53 +02:00
|
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev", "ethcore-dapps/dev", "ethcore-signer/dev"]
|
2016-08-01 15:32:07 +02:00
|
|
|
json-tests = ["ethcore/json-tests"]
|
2016-08-24 18:35:38 +02:00
|
|
|
stratum = ["ipc"]
|
2016-09-07 13:49:11 +02:00
|
|
|
ethstore-cli = ["ethcore/ethstore-cli"]
|
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-03-25 14:55:48 +01:00
|
|
|
debug = true
|
2016-02-29 19:49:29 +01:00
|
|
|
lto = false
|
2016-08-05 10:32:04 +02:00
|
|
|
|