Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
switch substrate & beefy to polkadot-v0.9.9 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
s3krit committed Aug 9, 2021
1 parent 8946bd3 commit 400ea55
Show file tree
Hide file tree
Showing 104 changed files with 1,194 additions and 1,194 deletions.
320 changes: 160 additions & 160 deletions Cargo.lock

Large diffs are not rendered by default.

54 changes: 27 additions & 27 deletions bridges/bin/millau/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,35 +24,35 @@ pallet-bridge-messages = { path = "../../../modules/messages" }

# Substrate Dependencies

frame-benchmarking = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
node-inspect = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
pallet-transaction-payment-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-basic-authorship = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
sc-client-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-telemetry = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-frame-rpc-system = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
node-inspect = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
pallet-transaction-payment-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-basic-authorship = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-cli = { git = "/~https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "polkadot-v0.9.9" }
sc-client-api = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-executor = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-finality-grandpa-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-keystore = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-service = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-telemetry = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
substrate-frame-rpc-system = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[build-dependencies]
substrate-build-script-utils = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-build-script-utils = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[features]
default = []
Expand Down
54 changes: 27 additions & 27 deletions bridges/bin/millau/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,35 +28,35 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager"

# Substrate Dependencies

frame-executive = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-support = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-system = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-system-rpc-runtime-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-balances = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-randomness-collective-flip = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-session = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-sudo = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-transaction-payment = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-transaction-payment-rpc-runtime-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-block-builder = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-offchain = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-session = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-std = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-trie = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-version = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-executive = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
frame-support = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
frame-system = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
frame-system-rpc-runtime-api = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-aura = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-balances = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-grandpa = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-randomness-collective-flip = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-session = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-sudo = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-timestamp = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-transaction-payment = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-transaction-payment-rpc-runtime-api = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-api = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-block-builder = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-core = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-offchain = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-session = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-trie = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }

[build-dependencies]
substrate-wasm-builder = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-wasm-builder = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[features]
default = ["std"]
Expand Down
54 changes: 27 additions & 27 deletions bridges/bin/rialto/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,35 +25,35 @@ rialto-runtime = { path = "../runtime" }
# Substrate Dependencies


frame-benchmarking = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
node-inspect = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
pallet-transaction-payment-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-basic-authorship = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
sc-client-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-telemetry = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-frame-rpc-system = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
node-inspect = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
pallet-transaction-payment-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-basic-authorship = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-cli = { git = "/~https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "polkadot-v0.9.9" }
sc-client-api = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-executor = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-finality-grandpa-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-keystore = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-service = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-telemetry = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
substrate-frame-rpc-system = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[build-dependencies]
substrate-build-script-utils = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-build-script-utils = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[features]
default = []
Expand Down
Loading

0 comments on commit 400ea55

Please sign in to comment.