Cargo.toml 2.65 KiB
Newer Older
[package]
Gav Wood's avatar
Gav Wood committed
description = "Parity Ethereum client"
Marek Kotewicz's avatar
Marek Kotewicz committed
name = "parity"
version = "1.7.0"
license = "GPL-3.0"
Gav Wood's avatar
Gav Wood committed
authors = ["Parity Technologies <[email protected]>"]

[dependencies]
log = "0.3"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
time = "0.1"
petevine's avatar
petevine committed
rpassword = "0.2.1"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
toml = "0.2"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
serde = "0.9"
serde_json = "0.9"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
app_dirs = "1.1.1"
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.7" }
Gav Wood's avatar
Gav Wood committed
ethsync = { path = "sync" }
Marek Kotewicz's avatar
Marek Kotewicz committed
ethcore = { path = "ethcore" }
ethcore-util = { path = "util" }
ethcore-io = { path = "util/io" }
ethcore-devtools = { path = "devtools" }
ethcore-ipc = { path = "ipc/rpc" }
Gav Wood's avatar
Gav Wood committed
ethcore-ipc-nano = { path = "ipc/nano" }
ethcore-ipc-hypervisor = { path = "ipc/hypervisor" }
ethcore-light = { path = "ethcore/light" }
ethcore-logger = { path = "logger" }
ethcore-stratum = { path = "stratum" }
ethkey = { path = "ethkey" }
evmbin = { path = "evmbin" }
rlp = { path = "util/rlp" }
Kristoffer Ström's avatar
Kristoffer Ström committed
rpc-cli = { path = "rpc_cli" }
Gav Wood's avatar
Gav Wood committed
parity-hash-fetch = { path = "hash-fetch" }
parity-ipfs-api = { path = "ipfs" }
parity-local-store = { path = "local-store" }
parity-reactor = { path = "util/reactor" }
parity-rpc = { path = "rpc" }
parity-rpc-client = { path = "rpc_client" }
parity-updater = { path = "updater" }
path = { path = "util/path" }

parity-dapps = { path = "dapps", optional = true }
clippy = { version = "0.0.103", optional = true}
ethcore-secretstore = { path = "secret_store", optional = true }
Gav Wood's avatar
Gav Wood committed

Tomasz Drwięga's avatar
Tomasz Drwięga committed
[dev-dependencies]
ethcore-ipc-tests = { path = "ipc/tests" }
Tomasz Drwięga's avatar
Tomasz Drwięga committed

[target.'cfg(windows)'.dependencies]
winapi = "0.2"

Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
[target.'cfg(not(windows))'.dependencies]
daemonize = "0.2"

[features]
default = ["ui-precompiled"]
	"parity-dapps/ui",
]
ui-precompiled = [
	"dapps",
	"parity-dapps/ui-precompiled",
dapps = ["parity-dapps"]
Nikolay Volf's avatar
Nikolay Volf committed
ipc = ["ethcore/ipc", "ethsync/ipc"]
Nikolay Volf's avatar
Nikolay Volf committed
jit = ["ethcore/jit"]
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "parity-rpc/dev", "parity-dapps/dev"]
Nikolay Volf's avatar
Nikolay Volf committed
json-tests = ["ethcore/json-tests"]
test-heavy = ["ethcore/test-heavy"]
Nikolay Volf's avatar
Nikolay Volf committed
ethkey-cli = ["ethcore/ethkey-cli"]
ethstore-cli = ["ethcore/ethstore-cli"]
evm-debug = ["ethcore/evm-debug"]
evm-debug-tests = ["ethcore/evm-debug-tests"]
slow-blocks = ["ethcore/slow-blocks"]
Gav Wood's avatar
Gav Wood committed
final = ["ethcore-util/final"]
secretstore = ["ethcore-secretstore"]
Marek Kotewicz's avatar
Marek Kotewicz committed

[[bin]]
path = "parity/main.rs"
name = "parity"

[profile.release]
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
lto = false
panic = "abort"

[workspace]