c060d9584d
* Refactor updater to use ethabi-derive * Grumble: do_call type alias * Empty commit to trigger test re-run * migration to ethabi-5.0 * migration to ethabi-5.0 in progress * use ethabi_deriven to generate TransactAcl contract * use ethabi_deriven to generate Registry contract * hash-fetch uses ethabi_derive, removed retain cycle from updater, fixed #7720 * node-filter crate uses ethabi_derive to generate peer_set contract interface * use LruCache in node-filter instead of HashMap * validator_set engine uses ethabi_derive * ethcore does not depend on native_contracts * miner does no depend on native_contracts * secret_store does not use native_contracts (in progress) * removed native-contracts * ethcore and updater does not depend on futures * updated ethereum-types * fixed all warnings caused by using new version of ethereum-types * updated ethabi_derive && ethabi_contract to get rid of warnings * removed another retain cycle in updater, fixed following minor version on update * moved contracts out of native_contracts res * updated ethabi_contract * fixed failing test * fixed failing test * there is no need to create two contracts of the same kind any more * simplify updater::ReleaseTrack conversion into u8 and add several tests for it * applied review suggestions * applied review suggestions
135 lines
3.2 KiB
TOML
135 lines
3.2 KiB
TOML
[package]
|
|
description = "Parity Ethereum client"
|
|
name = "parity"
|
|
# NOTE Make sure to update util/version/Cargo.toml as well
|
|
version = "1.10.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
env_logger = "0.4"
|
|
rustc-hex = "1.0"
|
|
docopt = "0.8"
|
|
clap = "2"
|
|
term_size = "0.3"
|
|
textwrap = "0.9"
|
|
time = "0.1"
|
|
num_cpus = "1.2"
|
|
number_prefix = "0.2"
|
|
rpassword = "1.0"
|
|
semver = "0.6"
|
|
ansi_term = "0.10"
|
|
parking_lot = "0.5"
|
|
regex = "0.2"
|
|
isatty = "0.1"
|
|
toml = "0.4"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
app_dirs = "1.1.1"
|
|
futures = "0.1"
|
|
futures-cpupool = "0.1"
|
|
fdlimit = "0.1"
|
|
ws2_32-sys = "0.2"
|
|
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.10" }
|
|
ethsync = { path = "sync" }
|
|
ethcore = { path = "ethcore" }
|
|
ethcore-bytes = { path = "util/bytes" }
|
|
ethcore-io = { path = "util/io" }
|
|
ethcore-light = { path = "ethcore/light" }
|
|
ethcore-logger = { path = "logger" }
|
|
ethcore-migrations = { path = "ethcore/migrations" }
|
|
ethcore-miner = { path = "miner" }
|
|
ethcore-network = { path = "util/network" }
|
|
ethcore-stratum = { path = "stratum" }
|
|
ethcore-transaction = { path = "ethcore/transaction" }
|
|
ethereum-types = "0.2"
|
|
node-filter = { path = "ethcore/node_filter" }
|
|
ethkey = { path = "ethkey" }
|
|
node-health = { path = "dapps/node-health" }
|
|
rlp = { path = "util/rlp" }
|
|
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" }
|
|
dir = { path = "util/dir" }
|
|
panic_hook = { path = "util/panic_hook" }
|
|
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 }
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.2"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.1"
|
|
ipnetwork = "0.12.6"
|
|
tempdir = "0.3"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.2"
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
daemonize = "0.2"
|
|
|
|
[features]
|
|
default = ["ui-precompiled"]
|
|
ui = [
|
|
"ui-enabled",
|
|
"parity-dapps/ui",
|
|
]
|
|
ui-precompiled = [
|
|
"ui-enabled",
|
|
"parity-dapps/ui-precompiled",
|
|
]
|
|
ui-enabled = ["dapps"]
|
|
dapps = ["parity-dapps"]
|
|
jit = ["ethcore/jit"]
|
|
json-tests = ["ethcore/json-tests"]
|
|
test-heavy = ["ethcore/test-heavy"]
|
|
evm-debug = ["ethcore/evm-debug"]
|
|
evm-debug-tests = ["ethcore/evm-debug-tests"]
|
|
slow-blocks = ["ethcore/slow-blocks"]
|
|
secretstore = ["ethcore-secretstore"]
|
|
final = ["parity-version/final"]
|
|
|
|
[[bin]]
|
|
path = "parity/main.rs"
|
|
name = "parity"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
debug = false
|
|
lto = false
|
|
panic = "abort"
|
|
|
|
[workspace]
|
|
members = [
|
|
"chainspec",
|
|
"dapps/js-glue",
|
|
"ethcore/wasm/run",
|
|
"ethcore/types",
|
|
"ethkey/cli",
|
|
"ethstore/cli",
|
|
"evmbin",
|
|
"miner",
|
|
"transaction-pool",
|
|
"whisper",
|
|
]
|