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-01-04 14:05:46 +01:00
|
|
|
common-types = { path = "../ethcore/types" }
|
2018-09-13 11:04:39 +02:00
|
|
|
ethabi = "6.0"
|
|
|
|
ethabi-contract = "6.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
ethabi-derive = "6.0"
|
2016-12-11 19:15:58 +01:00
|
|
|
ethcore = { path = "../ethcore" }
|
2018-04-10 12:13:49 +02:00
|
|
|
ethcore-sync = { path = "../ethcore/sync" }
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2019-01-04 14:05:46 +01:00
|
|
|
keccak-hash = "0.1"
|
|
|
|
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" }
|
|
|
|
parking_lot = "0.7"
|
2018-04-03 16:49:23 +02:00
|
|
|
rand = "0.4"
|
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 = []
|