-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade to polkadot v1.0.0. bump 1.5.1, runtime v16 (#194)
* first toml bends * bump versions * cont. expected changes. but upstream seems not ready yet * bend cumulus release branch to release-v1.0.0 * bump cumulus and polkadot release branches * plenty of fixes * fixing the unmindful merge * bump pallets
- Loading branch information
Showing
17 changed files
with
1,591 additions
and
1,432 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "encointer-collator" | ||
# align major.minor revision with the runtimes. bump patch revision ad lib. make this the github release tag | ||
version = "1.5.0" | ||
version = "1.5.1" | ||
authors = ["Encointer <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2021" | ||
|
@@ -11,96 +11,96 @@ name = "encointer-collator" | |
path = "src/main.rs" | ||
|
||
[dependencies] | ||
async-trait = "0.1.53" | ||
clap = { version = "4.0.32", features = ["derive"] } | ||
async-trait = "0.1.71" | ||
clap = { version = "4.3.11", features = ["derive"] } | ||
codec = { package = "parity-scale-codec", version = "3.0.0" } | ||
futures = { version = "0.3.1", features = ["compat"] } | ||
hex-literal = "0.3.4" | ||
futures = { version = "0.3.28", features = ["compat"] } | ||
hex-literal = "0.4.1" | ||
jsonrpsee = { version = "0.16.2", features = ["server"] } | ||
log = "0.4.17" | ||
serde = { version = "1.0.137", features = ["derive"] } | ||
log = "0.4.19" | ||
serde = { version = "1.0.167", features = ["derive"] } | ||
|
||
# added by encointer | ||
parachains-common = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
serde_json = "1.0.64" | ||
parachains-common = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
serde_json = "1.0.100" | ||
|
||
# Parachain runtimes | ||
launch-runtime = { package = "launch-runtime", path = "launch-runtime" } | ||
parachain-runtime = { package = "encointer-runtime", path = "encointer-runtime" } | ||
|
||
# encointer dependencies | ||
encointer-balances-tx-payment-rpc-runtime-api = { git = "https://github.com/encointer/pallets", branch = "polkadot-v0.9.42-pallets-v1.3.0" } | ||
pallet-encointer-bazaar-rpc = { git = "https://github.com/encointer/pallets", branch = "polkadot-v0.9.42-pallets-v1.3.0" } | ||
pallet-encointer-bazaar-rpc-runtime-api = { git = "https://github.com/encointer/pallets", branch = "polkadot-v0.9.42-pallets-v1.3.0" } | ||
pallet-encointer-ceremonies-rpc = { git = "https://github.com/encointer/pallets", branch = "polkadot-v0.9.42-pallets-v1.3.0" } | ||
pallet-encointer-ceremonies-rpc-runtime-api = { git = "https://github.com/encointer/pallets", branch = "polkadot-v0.9.42-pallets-v1.3.0" } | ||
pallet-encointer-communities-rpc = { git = "https://github.com/encointer/pallets", branch = "polkadot-v0.9.42-pallets-v1.3.0" } | ||
pallet-encointer-communities-rpc-runtime-api = { git = "https://github.com/encointer/pallets", branch = "polkadot-v0.9.42-pallets-v1.3.0" } | ||
encointer-balances-tx-payment-rpc-runtime-api = { git = "https://github.com/encointer/pallets", branch = "polkadot-v1.0.0-pallets-v1.3.0" } | ||
pallet-encointer-bazaar-rpc = { git = "https://github.com/encointer/pallets", branch = "polkadot-v1.0.0-pallets-v1.3.0" } | ||
pallet-encointer-bazaar-rpc-runtime-api = { git = "https://github.com/encointer/pallets", branch = "polkadot-v1.0.0-pallets-v1.3.0" } | ||
pallet-encointer-ceremonies-rpc = { git = "https://github.com/encointer/pallets", branch = "polkadot-v1.0.0-pallets-v1.3.0" } | ||
pallet-encointer-ceremonies-rpc-runtime-api = { git = "https://github.com/encointer/pallets", branch = "polkadot-v1.0.0-pallets-v1.3.0" } | ||
pallet-encointer-communities-rpc = { git = "https://github.com/encointer/pallets", branch = "polkadot-v1.0.0-pallets-v1.3.0" } | ||
pallet-encointer-communities-rpc-runtime-api = { git = "https://github.com/encointer/pallets", branch = "polkadot-v1.0.0-pallets-v1.3.0" } | ||
|
||
# Substrate dependencies | ||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-network-sync = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.42" } | ||
sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.42" } | ||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-network-sync = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v1.0.0" } | ||
#sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v1.0.0" } | ||
|
||
# RPC related dependencies | ||
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
|
||
# Polkadot dependencies | ||
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.42" } | ||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.42" } | ||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.42" } | ||
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.42" } | ||
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.42" } | ||
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v1.0.0" } | ||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v1.0.0" } | ||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v1.0.0" } | ||
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v1.0.0" } | ||
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v1.0.0" } | ||
|
||
# Cumulus | ||
cumulus-client-cli = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-client-consensus-relay-chain = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-client-network = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.42" } | ||
cumulus-client-cli = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-client-consensus-relay-chain = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-client-network = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech/cumulus", branch = "release-v1.0.0" } | ||
|
||
[build-dependencies] | ||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } | ||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" } | ||
|
||
[dev-dependencies] | ||
assert_cmd = "2.0" | ||
|
Oops, something went wrong.