mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-09 20:11:09 +00:00
Update branches and make it compile
This commit is contained in:
+21
-21
@@ -5,25 +5,25 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
sc-service = { 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-block-builder = { 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-executor-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
substrate-test-client = { 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-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
sp-test-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
sp-blockchain = { 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-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
|
||||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-test-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
|
||||
|
||||
# Cumulus deps
|
||||
cumulus-test-runtime = { path = "../runtime" }
|
||||
@@ -33,8 +33,8 @@ cumulus-primitives-core = { path = "../../primitives/core" }
|
||||
cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inherent" }
|
||||
|
||||
# Polkadot deps
|
||||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
|
||||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
|
||||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
|
||||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
|
||||
|
||||
# Other deps
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = [ "derive" ] }
|
||||
|
||||
Reference in New Issue
Block a user