[package] description = "Ethcore client." name = "parity" version = "1.3.0" license = "GPL-3.0" authors = ["Ethcore "] 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" num_cpus = "0.2" number_prefix = "0.2" rpassword = "0.2.1" semver = "0.2" ansi_term = "0.7" lazy_static = "0.2" regex = "0.1" isatty = "0.1" ctrlc = { git = "https://github.com/ethcore/rust-ctrlc.git" } fdlimit = { path = "util/fdlimit" } ethcore = { path = "ethcore" } ethcore-util = { path = "util" } ethsync = { path = "sync" } ethcore-devtools = { path = "devtools" } ethcore-rpc = { path = "rpc" } ethcore-signer = { path = "signer" } ethcore-ipc-nano = { path = "ipc/nano" } ethcore-ipc = { path = "ipc/rpc" } ethcore-ipc-hypervisor = { path = "ipc/hypervisor" } json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" } ethcore-dapps = { path = "dapps", optional = true } clippy = { version = "0.0.79", optional = true} [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 = ["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"] 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" [[bin]] path = "parity/sync/main.rs" name = "sync" [profile.release] debug = true lto = false