c7f608ec74
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
description = "Parity Updater Service."
|
|
name = "parity-updater"
|
|
version = "1.12.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
|
|
lazy_static = "1.0"
|
|
log = "0.3"
|
|
ethabi = "5.1"
|
|
ethabi-derive = "5.0"
|
|
ethabi-contract = "5.0"
|
|
target_info = "0.1"
|
|
semver = "0.9"
|
|
ethcore = { path = "../ethcore" }
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
|
ethcore-sync = { path = "../ethcore/sync" }
|
|
ethereum-types = "0.3"
|
|
parking_lot = "0.6"
|
|
parity-hash-fetch = { path = "../hash-fetch" }
|
|
parity-version = { path = "../util/version" }
|
|
path = { git = "https://github.com/paritytech/parity-common" }
|
|
rand = "0.4"
|
|
|
|
[dev-dependencies]
|
|
ethcore = { path = "../ethcore", features = ["test-helpers"] }
|
|
tempdir = "0.3"
|
|
matches = "0.1"
|
|
|
|
[features]
|
|
# hardcode version number 1.3.7 of parity to force an update
|
|
# in order to manually test that parity fall-over to the local version
|
|
# in case of invalid or deprecated command line arguments are entered
|
|
test-updater = []
|