* Fix up the VM trace. * Fix test. * Fix state not using "account_starting_nonce" (#1830) * failng test * use account_starting_nonce instead of zero * simplier test * jsons are getting closer * incorrect test client and incorrect tests fix * null_morden is using 0x0 starting nonce * replaced json with the correct one * superwhatever line * Bump json-ipc-server again (#1839) * bump ipc version * bumping once more * v1.2.4 * Fixed reported max height and transaction propagation (#1852) * Fixed max height and transaction propagation * Fixed tests
67 lines
1.7 KiB
TOML
67 lines
1.7 KiB
TOML
[package]
|
|
description = "Ethcore client."
|
|
name = "parity"
|
|
version = "1.2.4"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.1"
|
|
syntex = "*"
|
|
ethcore-ipc-codegen = { path = "ipc/codegen" }
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
rustc-serialize = "0.3"
|
|
docopt = "0.6"
|
|
time = "0.1"
|
|
ctrlc = { git = "https://github.com/ethcore/rust-ctrlc.git" }
|
|
fdlimit = { path = "util/fdlimit" }
|
|
num_cpus = "0.2"
|
|
number_prefix = "0.2"
|
|
rpassword = "0.2.1"
|
|
clippy = { version = "0.0.77", optional = true}
|
|
ethcore = { path = "ethcore" }
|
|
ethcore-util = { path = "util" }
|
|
ethsync = { path = "sync" }
|
|
ethcore-devtools = { path = "devtools" }
|
|
ethcore-rpc = { path = "rpc", optional = true }
|
|
ethcore-signer = { path = "signer", optional = true }
|
|
ethcore-dapps = { path = "dapps", optional = true }
|
|
semver = "0.2"
|
|
ethcore-ipc-nano = { path = "ipc/nano" }
|
|
ethcore-ipc = { path = "ipc/rpc" }
|
|
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
|
|
ansi_term = "0.7"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.2"
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
daemonize = "0.2"
|
|
|
|
[dependencies.hyper]
|
|
version = "0.8"
|
|
default-features = false
|
|
|
|
[features]
|
|
default = ["rpc", "ethcore-signer", "ui", "use-precompiled-js"]
|
|
ui = ["dapps", "ethcore-signer/ui"]
|
|
use-precompiled-js = ["ethcore-dapps/use-precompiled-js", "ethcore-signer/use-precompiled-js"]
|
|
dapps = ["ethcore-dapps"]
|
|
rpc = ["ethcore-rpc"]
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev",
|
|
"ethcore-dapps/dev", "ethcore-signer/dev"]
|
|
travis-beta = ["ethcore/json-tests"]
|
|
travis-nightly = ["ethcore/json-tests", "dev"]
|
|
|
|
[[bin]]
|
|
path = "parity/main.rs"
|
|
name = "parity"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
lto = false
|