2016-01-26 13:14:22 +01:00
|
|
|
[package]
|
2016-12-11 19:14:42 +01:00
|
|
|
description = "Parity Ethereum client"
|
2016-01-31 11:08:04 +01:00
|
|
|
name = "parity"
|
2017-03-13 12:10:53 +01:00
|
|
|
version = "1.7.0"
|
2016-01-26 13:14:22 +01:00
|
|
|
license = "GPL-3.0"
|
2016-12-11 19:14:42 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2017-03-15 14:03:11 +01:00
|
|
|
build = "build.rs"
|
2016-01-26 13:14:22 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.3"
|
2017-03-28 19:06:08 +02:00
|
|
|
env_logger = "0.4"
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
|
|
|
docopt = "0.8"
|
2016-02-23 20:14:37 +01:00
|
|
|
time = "0.1"
|
2017-03-15 12:13:19 +01:00
|
|
|
num_cpus = "1.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"
|
2017-03-28 19:06:08 +02:00
|
|
|
semver = "0.6"
|
2017-03-22 06:23:40 +01:00
|
|
|
ansi_term = "0.9"
|
2017-03-28 19:06:08 +02:00
|
|
|
regex = "0.2"
|
2016-07-15 10:11:14 +02:00
|
|
|
isatty = "0.1"
|
2017-07-06 11:36:15 +02:00
|
|
|
toml = "0.4"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2016-12-13 23:38:29 +01:00
|
|
|
app_dirs = "1.1.1"
|
2017-03-23 22:20:00 +01:00
|
|
|
futures = "0.1"
|
2017-01-11 20:02:27 +01:00
|
|
|
fdlimit = "0.1"
|
2017-03-23 13:25:31 +01:00
|
|
|
ws2_32-sys = "0.2"
|
2017-03-22 07:02:14 +01:00
|
|
|
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
|
|
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.7" }
|
2016-12-11 19:14:42 +01:00
|
|
|
ethsync = { path = "sync" }
|
2016-01-31 11:08:04 +01:00
|
|
|
ethcore = { path = "ethcore" }
|
2016-03-07 11:40:44 +01:00
|
|
|
ethcore-util = { path = "util" }
|
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-05-24 20:30:21 +02:00
|
|
|
ethcore-ipc = { path = "ipc/rpc" }
|
2016-12-11 19:14:42 +01:00
|
|
|
ethcore-ipc-nano = { path = "ipc/nano" }
|
2016-07-09 17:18:34 +02:00
|
|
|
ethcore-ipc-hypervisor = { path = "ipc/hypervisor" }
|
2017-01-11 20:02:27 +01:00
|
|
|
ethcore-light = { path = "ethcore/light" }
|
2016-07-20 18:13:56 +02:00
|
|
|
ethcore-logger = { path = "logger" }
|
2016-10-22 20:07:12 +02:00
|
|
|
ethcore-stratum = { path = "stratum" }
|
2017-04-03 11:13:51 +02:00
|
|
|
ethkey = { path = "ethkey" }
|
2017-01-11 20:02:27 +01:00
|
|
|
rlp = { path = "util/rlp" }
|
2016-11-02 17:14:05 +01:00
|
|
|
rpc-cli = { path = "rpc_cli" }
|
2016-12-11 19:14:42 +01:00
|
|
|
parity-hash-fetch = { path = "hash-fetch" }
|
2017-02-16 14:51:33 +01:00
|
|
|
parity-ipfs-api = { path = "ipfs" }
|
2017-02-20 17:21:55 +01:00
|
|
|
parity-local-store = { path = "local-store" }
|
2017-04-13 16:32:07 +02:00
|
|
|
parity-reactor = { path = "util/reactor" }
|
|
|
|
parity-rpc = { path = "rpc" }
|
|
|
|
parity-rpc-client = { path = "rpc_client" }
|
|
|
|
parity-updater = { path = "updater" }
|
2017-03-22 06:23:40 +01:00
|
|
|
path = { path = "util/path" }
|
2017-04-03 10:27:37 +02:00
|
|
|
|
|
|
|
parity-dapps = { path = "dapps", optional = true }
|
2017-01-11 20:02:27 +01:00
|
|
|
clippy = { version = "0.0.103", optional = true}
|
2017-02-20 16:13:21 +01:00
|
|
|
ethcore-secretstore = { path = "secret_store", optional = true }
|
2016-03-28 10:25:19 +02:00
|
|
|
|
2017-03-15 14:03:11 +01:00
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = "0.2"
|
|
|
|
|
2017-02-13 16:38:47 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
ethcore-ipc-tests = { path = "ipc/tests" }
|
2017-04-03 10:27:37 +02:00
|
|
|
pretty_assertions = "0.1"
|
2017-02-13 16:38:47 +01: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-12-08 19:52:48 +01:00
|
|
|
default = ["ui-precompiled"]
|
2016-10-22 20:07:12 +02:00
|
|
|
ui = [
|
2017-06-09 12:26:57 +02:00
|
|
|
"ui-enabled",
|
2017-04-03 10:27:37 +02:00
|
|
|
"parity-dapps/ui",
|
2016-10-22 20:07:12 +02:00
|
|
|
]
|
|
|
|
ui-precompiled = [
|
2017-06-09 12:26:57 +02:00
|
|
|
"ui-enabled",
|
2017-04-03 10:27:37 +02:00
|
|
|
"parity-dapps/ui-precompiled",
|
2016-10-22 20:07:12 +02:00
|
|
|
]
|
2017-06-09 12:26:57 +02:00
|
|
|
ui-enabled = ["dapps"]
|
2017-04-03 10:27:37 +02:00
|
|
|
dapps = ["parity-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"]
|
2017-05-24 12:24:07 +02:00
|
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "parity-rpc/dev", "parity-dapps/dev"]
|
2016-10-04 18:22:26 +02:00
|
|
|
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
|
|
|
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-12-17 14:36:30 +01:00
|
|
|
final = ["ethcore-util/final"]
|
2017-02-20 16:13:21 +01:00
|
|
|
secretstore = ["ethcore-secretstore"]
|
2016-01-31 11:08:04 +01:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
path = "parity/main.rs"
|
|
|
|
name = "parity"
|
2016-02-21 19:46:29 +01:00
|
|
|
|
2017-06-27 11:53:10 +02:00
|
|
|
[profile.dev]
|
2017-06-22 19:00:53 +02:00
|
|
|
panic = "abort"
|
|
|
|
|
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-12-08 11:31:57 +01:00
|
|
|
panic = "abort"
|
2017-05-23 12:28:22 +02:00
|
|
|
|
|
|
|
[workspace]
|
2017-06-19 11:29:09 +02:00
|
|
|
members = ["ethstore/cli", "ethkey/cli", "evmbin"]
|