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)
|
2019-02-21 20:03:34 +01:00
|
|
|
version = "2.5.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]
|
|
|
|
# This versions track. Should be changed to `stable` or `beta` when on respective branches.
|
|
|
|
# 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-01-21 22:55:44 +01:00
|
|
|
foundation = { forkBlock = 7280000, critical = false }
|
|
|
|
ropsten = { forkBlock = 4939394, critical = false }
|
|
|
|
kovan = { forkBlock = 10255201, critical = false }
|
2019-03-26 23:31:52 +01:00
|
|
|
goerli = { forkBlock = 0, 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"
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2017-12-22 14:37:39 +01:00
|
|
|
target_info = "0.1"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
vergen = "0.1"
|
2018-04-04 11:54:41 +02:00
|
|
|
rustc_version = "0.2"
|
2018-02-08 12:38:56 +01:00
|
|
|
toml = "0.4"
|
2018-01-02 11:02:04 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
final = []
|