openethereum/Cargo.toml

132 lines
3.1 KiB
TOML
Raw Normal View History

2016-01-26 13:14:22 +01:00
[package]
description = "Parity Ethereum client"
2016-01-31 11:08:04 +01:00
name = "parity"
version = "1.10.0"
2016-01-26 13:14:22 +01:00
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
2016-01-26 13:14:22 +01:00
[dependencies]
log = "0.3"
env_logger = "0.4"
2017-07-06 11:36:15 +02:00
rustc-hex = "1.0"
docopt = "0.8"
clap = "2"
2016-02-23 20:14:37 +01:00
time = "0.1"
num_cpus = "1.2"
number_prefix = "0.2"
rpassword = "1.0"
semver = "0.6"
ansi_term = "0.9"
parking_lot = "0.4"
regex = "0.2"
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"
futures-cpupool = "0.1"
fdlimit = "0.1"
ws2_32-sys = "0.2"
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
2017-11-13 22:52:25 +01:00
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.9" }
ethsync = { path = "sync" }
2016-01-31 11:08:04 +01:00
ethcore = { path = "ethcore" }
ethcore-bytes = { path = "util/bytes" }
2016-02-19 16:09:31 +01:00
ethcore-devtools = { path = "devtools" }
ethcore-io = { path = "util/io" }
ethcore-light = { path = "ethcore/light" }
ethcore-logger = { path = "logger" }
ethcore-miner = { path = "miner" }
ethcore-network = { path = "util/network" }
ethcore-stratum = { path = "stratum" }
ethcore-transaction = { path = "ethcore/transaction" }
ethereum-types = "0.1"
2017-08-29 14:38:01 +02:00
node-filter = { path = "ethcore/node_filter" }
ethkey = { path = "ethkey" }
node-health = { path = "dapps/node-health" }
rlp = { path = "util/rlp" }
2016-11-02 17:14:05 +01:00
rpc-cli = { path = "rpc_cli" }
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-version = { path = "util/version" }
parity-whisper = { path = "whisper" }
path = { path = "util/path" }
2018-01-02 11:02:04 +01:00
dir = { path = "util/dir" }
panic_hook = { path = "panic_hook" }
2017-11-10 19:04:55 +01:00
keccak-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 }
ethcore-secretstore = { path = "secret_store", optional = true }
2016-03-28 10:25:19 +02:00
[build-dependencies]
rustc_version = "0.2"
[dev-dependencies]
pretty_assertions = "0.1"
ipnetwork = "0.12.6"
[target.'cfg(windows)'.dependencies]
winapi = "0.2"
[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"]
ui = [
"ui-enabled",
"parity-dapps/ui",
]
ui-precompiled = [
"ui-enabled",
"parity-dapps/ui-precompiled",
]
ui-enabled = ["dapps"]
dapps = ["parity-dapps"]
2016-10-04 18:22:26 +02:00
jit = ["ethcore/jit"]
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"]
evm-debug-tests = ["ethcore/evm-debug-tests"]
slow-blocks = ["ethcore/slow-blocks"]
secretstore = ["ethcore-secretstore"]
2018-01-02 11:02:04 +01:00
final = ["parity-version/final"]
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]
debug = false
2016-02-29 19:49:29 +01:00
lto = false
panic = "abort"
[workspace]
members = [
"chainspec",
"dapps/js-glue",
"ethcore/wasm/run",
"ethcore/types",
"ethkey/cli",
"ethstore/cli",
"evmbin",
"miner",
"transaction-pool",
"whisper",
]