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]
|
2019-08-15 17:59:22 +02:00
|
|
|
client-traits = { path = "../ethcore/client-traits" }
|
2019-01-04 14:05:46 +01:00
|
|
|
common-types = { path = "../ethcore/types" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethabi = "9.0.1"
|
|
|
|
ethabi-contract = "9.0.0"
|
|
|
|
ethabi-derive = "9.0.1"
|
2016-12-11 19:15:58 +01:00
|
|
|
ethcore = { path = "../ethcore" }
|
2018-04-10 12:13:49 +02:00
|
|
|
ethcore-sync = { path = "../ethcore/sync" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
|
|
|
keccak-hash = "0.4.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
lazy_static = "1.0"
|
|
|
|
log = "0.4"
|
|
|
|
parity-bytes = "0.1"
|
2018-12-28 10:33:49 +01:00
|
|
|
parity-hash-fetch = { path = "hash-fetch" }
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-path = "0.1"
|
2019-01-04 14:05:46 +01:00
|
|
|
parity-version = { path = "../util/version" }
|
2019-10-18 15:12:16 +02:00
|
|
|
rand = "0.7"
|
2020-02-07 17:23:45 +01:00
|
|
|
parking_lot = "0.10.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
semver = "0.9"
|
|
|
|
target_info = "0.1"
|
2018-04-03 16:49:23 +02:00
|
|
|
|
|
|
|
[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 = []
|