2016-01-26 13:14:22 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore client."
|
2016-01-31 11:08:04 +01:00
|
|
|
name = "parity"
|
2016-06-25 10:32:05 +02:00
|
|
|
version = "1.3.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-04-13 18:03:57 +02:00
|
|
|
syntex = "*"
|
2016-06-01 17:59:21 +02:00
|
|
|
ethcore-ipc-codegen = { path = "ipc/codegen" }
|
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-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-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-07-13 11:48:04 +02:00
|
|
|
clippy = { version = "0.0.79", 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-03-28 10:25:19 +02:00
|
|
|
[dependencies.hyper]
|
|
|
|
version = "0.8"
|
|
|
|
default-features = false
|
2016-03-07 11:40:44 +01:00
|
|
|
|
2016-01-26 13:14:22 +01:00
|
|
|
[features]
|
2016-07-14 20:05:57 +02:00
|
|
|
default = ["ui", "use-precompiled-js"]
|
|
|
|
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-16 15:55:07 +02:00
|
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev", "ethcore-dapps/dev", "ethcore-signer/dev"]
|
2016-02-19 01:25:06 +01:00
|
|
|
travis-beta = ["ethcore/json-tests"]
|
2016-03-11 11:16:49 +01:00
|
|
|
travis-nightly = ["ethcore/json-tests", "dev"]
|
2016-01-31 11:08:04 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
path = "parity/main.rs"
|
|
|
|
name = "parity"
|
2016-02-21 19:46:29 +01:00
|
|
|
|
2016-07-15 15:32:29 +02:00
|
|
|
[[bin]]
|
|
|
|
path = "parity/sync/main.rs"
|
|
|
|
name = "sync"
|
|
|
|
|
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
|