2018-02-08 12:38:56 +01:00
|
|
|
# NOTE This file is used by the auto-updater service.
|
|
|
|
# Make sure to update the service if it's moved or the structure is changed.
|
2017-12-22 14:37:39 +01:00
|
|
|
[package]
|
|
|
|
name = "parity-version"
|
2018-08-30 19:57:27 +02:00
|
|
|
# NOTE: this value is used for Parity Ethereum version string (via env CARGO_PKG_VERSION)
|
2020-01-29 15:07:24 +01:00
|
|
|
version = "2.8.0"
|
2017-12-22 14:37:39 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
2018-02-08 12:38:56 +01:00
|
|
|
[package.metadata]
|
2020-01-22 17:34:34 +01:00
|
|
|
# This versions track. Should be changed to `stable` when on respective branches.
|
2018-02-08 12:38:56 +01:00
|
|
|
# Used by auto-updater and for Parity version string.
|
|
|
|
track = "nightly"
|
|
|
|
|
2018-06-08 15:54:23 +02:00
|
|
|
# Network specific settings, used ONLY by auto-updater.
|
|
|
|
# Latest supported fork blocks.
|
|
|
|
# Indicates a critical release in this track (i.e. consensus issue).
|
|
|
|
[package.metadata.networks]
|
2019-12-19 13:05:04 +01:00
|
|
|
foundation = { forkBlock = 9069000, critical = false }
|
|
|
|
ropsten = { forkBlock = 6485846, critical = false }
|
|
|
|
kovan = { forkBlock = 14111141, critical = false }
|
|
|
|
goerli = { forkBlock = 1561651, critical = false }
|
2018-02-08 12:38:56 +01:00
|
|
|
|
2017-12-22 14:37:39 +01:00
|
|
|
[dependencies]
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
2019-06-03 15:36:21 +02:00
|
|
|
rlp = "0.4.0"
|
2017-12-22 14:37:39 +01:00
|
|
|
target_info = "0.1"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2019-12-02 22:18:44 +01:00
|
|
|
vergen = "3.0.4"
|
2018-04-04 11:54:41 +02:00
|
|
|
rustc_version = "0.2"
|
2020-02-07 17:23:45 +01:00
|
|
|
toml = "0.5.6"
|
2018-01-02 11:02:04 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
final = []
|