Skip to content

Commit

Permalink
Fix polkadot deps: use 'release-v0.9.1' branch. (open-web3-stack#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunxw authored May 14, 2021
1 parent 0c1e298 commit 3dbb546
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ num-traits = { version = "0.2.14", default-features = false }
impl-trait-for-tuples = "0.2.1"
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 }
# 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]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion unknown-tokens/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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-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 }

Expand Down
4 changes: 2 additions & 2 deletions xcm-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

xcm = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1", default-features = false }
xcm-executor = { 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 = "release-v0.9.1", default-features = false }

orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }

Expand Down
10 changes: 5 additions & 5 deletions xtokens/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

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-traits = { path = "../traits", default-features = false}

[dev-dependencies]
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-parachain = { 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 = "release-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" }
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" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1" }
xcm-builder = { 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 = "release-v0.9.1" }

orml-tokens = { path = "../tokens", version = "0.4.1-dev" }
orml-traits = { path = "../traits", version = "0.4.1-dev" }
Expand Down

0 comments on commit 3dbb546

Please sign in to comment.