2016-12-11 19:15:58 +01:00
|
|
|
[package]
|
|
|
|
description = "Parity Updater Service."
|
|
|
|
name = "parity-updater"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.0"
|
2016-12-11 19:15:58 +01:00
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
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
2018-07-10 14:59:19 +02:00
|
|
|
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
|
2018-04-03 16:49:23 +02:00
|
|
|
lazy_static = "1.0"
|
2016-12-11 19:15:58 +01:00
|
|
|
log = "0.3"
|
2018-02-09 09:32:06 +01:00
|
|
|
ethabi = "5.1"
|
|
|
|
ethabi-derive = "5.0"
|
|
|
|
ethabi-contract = "5.0"
|
2016-12-22 18:26:39 +01:00
|
|
|
target_info = "0.1"
|
2018-04-04 11:54:41 +02:00
|
|
|
semver = "0.9"
|
2016-12-11 19:15:58 +01:00
|
|
|
ethcore = { path = "../ethcore" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
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
2018-07-10 14:59:19 +02:00
|
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
2018-04-10 12:13:49 +02:00
|
|
|
ethcore-sync = { path = "../ethcore/sync" }
|
2018-04-02 13:12:52 +02:00
|
|
|
ethereum-types = "0.3"
|
2018-07-03 17:31:08 +02:00
|
|
|
parking_lot = "0.6"
|
2016-12-11 19:15:58 +01:00
|
|
|
parity-hash-fetch = { path = "../hash-fetch" }
|
2017-12-22 14:37:39 +01:00
|
|
|
parity-version = { path = "../util/version" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
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
2018-07-10 14:59:19 +02:00
|
|
|
path = { git = "https://github.com/paritytech/parity-common" }
|
2018-04-03 16:49:23 +02:00
|
|
|
rand = "0.4"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-06-11 12:26:49 +02:00
|
|
|
ethcore = { path = "../ethcore", features = ["test-helpers"] }
|
2018-04-03 16:49:23 +02:00
|
|
|
tempdir = "0.3"
|
|
|
|
matches = "0.1"
|
2018-07-10 12:17:53 +02:00
|
|
|
|
|
|
|
[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 = []
|