Cargo.toml 3.05 KiB
Newer Older
[package]
Gav Wood's avatar
Gav Wood committed
description = "Parity Ethereum client"
Marek Kotewicz's avatar
Marek Kotewicz committed
name = "parity"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
version = "1.9.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"
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.8" }
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-bytes = { path = "util/bytes" }
Fredrik's avatar
Fredrik committed
ethcore-bigint = { path = "util/bigint" }
ethcore-io = { path = "util/io" }
ethcore-devtools = { path = "devtools" }
ethcore-light = { path = "ethcore/light" }
ethcore-logger = { path = "logger" }
ethcore-stratum = { path = "stratum" }
ethcore-network = { path = "util/network" }
node-filter = { path = "ethcore/node_filter" }
ethkey = { path = "ethkey" }
node-health = { path = "dapps/node-health" }
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" }
parity-whisper = { path = "whisper" }
path = { path = "util/path" }
Brian Anderson's avatar
Brian Anderson committed
panic_hook = { path = "panic_hook" }
Marek Kotewicz's avatar
Marek Kotewicz committed
hash = { path = "util/hash" }
migration = { path = "util/migration" }
kvdb = { path = "util/kvdb" }
kvdb-rocksdb = { path = "util/kvdb-rocksdb" }
journaldb = { path = "util/journaldb" }

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]
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",
	"parity-dapps/ui-precompiled",
ui-enabled = ["dapps"]
dapps = ["parity-dapps"]
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
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"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
[profile.dev]
panic = "abort"

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

[workspace]
members = ["ethstore/cli", "ethkey/cli", "evmbin", "whisper", "chainspec", "dapps/js-glue"]