Skip to content
Snippets Groups Projects
Unverified Commit 3dbb5460 authored by Shaun Wang's avatar Shaun Wang Committed by GitHub
Browse files

Fix polkadot deps: use 'release-v0.9.1' branch. (#492)

parent 0c1e2989
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ num-traits = { version = "0.2.14", default-features = false } ...@@ -17,7 +17,7 @@ num-traits = { version = "0.2.14", default-features = false }
impl-trait-for-tuples = "0.2.1" impl-trait-for-tuples = "0.2.1"
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
orml-utilities = { path = "../utilities", version = "0.4.1-dev", default-features = false } orml-utilities = { path = "../utilities", version = "0.4.1-dev", default-features = false }
# xcm = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1", default-features = false } # xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", default-features = false }
[features] [features]
default = ["std"] default = ["std"]
......
...@@ -14,7 +14,7 @@ sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v ...@@ -14,7 +14,7 @@ sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
xcm = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1", default-features = false } xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", default-features = false }
orml-xcm-support = { path = "../xcm-support", default-features = false } orml-xcm-support = { path = "../xcm-support", default-features = false }
......
...@@ -15,8 +15,8 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkad ...@@ -15,8 +15,8 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkad
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
xcm = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1", default-features = false } xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", default-features = false }
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1", default-features = false } xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", default-features = false }
orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false } orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }
......
...@@ -19,21 +19,21 @@ frame-system = { git = "https://github.com/paritytech/substrate", branch = "polk ...@@ -19,21 +19,21 @@ frame-system = { git = "https://github.com/paritytech/substrate", branch = "polk
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1", default-features = false } cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1", default-features = false }
xcm = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1", default-features = false } xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", default-features = false }
orml-xcm-support = { path = "../xcm-support", default-features = false } orml-xcm-support = { path = "../xcm-support", default-features = false }
orml-traits = { path = "../traits", default-features = false} orml-traits = { path = "../traits", default-features = false}
[dev-dependencies] [dev-dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1" } polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1" } polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1" }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
xcm-simulator = { git = "https://github.com/shaunxw/xcm-simulator", branch = "master" } xcm-simulator = { git = "https://github.com/shaunxw/xcm-simulator", branch = "master" }
cumulus-pallet-xcm-handler = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1" } cumulus-pallet-xcm-handler = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1" }
parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1" } parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1" } xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1" } xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1" }
orml-tokens = { path = "../tokens", version = "0.4.1-dev" } orml-tokens = { path = "../tokens", version = "0.4.1-dev" }
orml-traits = { path = "../traits", version = "0.4.1-dev" } orml-traits = { path = "../traits", version = "0.4.1-dev" }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment