mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 10:31:04 +00:00
Bump Substrate to RC5 (#243)
* Bump Substrate to rc5 * Bump async-std to v1.6.2 There was a bug in v.1.6.0 which kept us locked to v1.5 releases. I think that's fixed now so I'm bumping this. * Update bridge node runtime * Update node service * Update CLI * Add SystemWeightInfo type to test runtimes * Add RPC extension builder to service * Directly return rpc_extensions_builder * Allow complex types in service This comes from Substrate, so I'd rather just keep the code as is * Update benchmarking code for new CLI
This commit is contained in:
committed by
Bastian Köcher
parent
80cc9e793e
commit
6fd1651b21
@@ -29,14 +29,14 @@ features = ["derive"]
|
||||
|
||||
# Substrate Dependencies
|
||||
[dependencies.pallet-aura]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.pallet-balances]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
@@ -51,75 +51,75 @@ default-features = false
|
||||
path = "../../../modules/currency-exchange"
|
||||
|
||||
[dependencies.frame-support]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.pallet-grandpa]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.pallet-randomness-collective-flip]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.pallet-sudo]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.pallet-session]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.frame-system]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.frame-system-rpc-runtime-api]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.pallet-timestamp]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.pallet-transaction-payment]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.frame-executive]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
# Substrate Primitives
|
||||
[dependencies.sp-api]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-block-builder]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
@@ -134,75 +134,75 @@ default-features = false
|
||||
path = "../../../primitives/currency-exchange"
|
||||
|
||||
[dependencies.sp-consensus-aura]
|
||||
version = "0.8.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "0.8.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-core]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-inherents]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-io]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-offchain]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-runtime]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-session]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-staking]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-std]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-transaction-pool]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.sp-version]
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies.frame-benchmarking]
|
||||
optional = true
|
||||
version = "2.0.0-rc4"
|
||||
tag = 'v2.0.0-rc4'
|
||||
version = "2.0.0-rc5"
|
||||
tag = 'v2.0.0-rc5'
|
||||
default-features = false
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
@@ -219,7 +219,7 @@ path = "../../../primitives/ethereum-poa"
|
||||
|
||||
[build-dependencies.wasm-builder-runner]
|
||||
version = "1.0.5"
|
||||
tag = 'v2.0.0-rc4'
|
||||
tag = 'v2.0.0-rc5'
|
||||
package = "substrate-wasm-builder-runner"
|
||||
git = "https://github.com/paritytech/substrate/"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user