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-01-11 09:58:37 +01:00
|
|
|
# NOTE: this value is used for Parity version string (via env CARGO_PKG_VERSION)
|
2018-07-11 13:35:10 +02:00
|
|
|
version = "2.0.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]
|
|
|
|
foundation = { forkBlock = 4370000, critical = false }
|
|
|
|
ropsten = { forkBlock = 10, critical = false }
|
|
|
|
kovan = { forkBlock = 6600000, critical = false }
|
2018-02-08 12:38:56 +01:00
|
|
|
|
2017-12-22 14:37:39 +01:00
|
|
|
[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
|
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
|
|
|
rlp = { git = "https://github.com/paritytech/parity-common" }
|
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 = []
|