From 0c1e29896b52d28517ecb6eabd7eea4a0a132f46 Mon Sep 17 00:00:00 2001 From: Shaun Wang <spxwang@gmail.com> Date: Fri, 14 May 2021 13:46:56 +1200 Subject: [PATCH] Use polkadot-0.9.1 branch. (#491) * Use polkadot-0.9.1 branch. * Comment out xcm related crate. --- auction/Cargo.toml | 12 ++++++------ authority/Cargo.toml | 16 ++++++++-------- benchmarking/Cargo.toml | 18 +++++++++--------- currencies/Cargo.toml | 14 +++++++------- gradually-update/Cargo.toml | 12 ++++++------ nft/Cargo.toml | 12 ++++++------ oracle/Cargo.toml | 14 +++++++------- oracle/rpc/Cargo.toml | 6 +++--- oracle/rpc/runtime-api/Cargo.toml | 4 ++-- rewards/Cargo.toml | 12 ++++++------ tokens/Cargo.toml | 14 +++++++------- traits/Cargo.toml | 12 ++++++------ unknown-tokens/Cargo.toml | 14 +++++++------- utilities/Cargo.toml | 10 +++++----- vesting/Cargo.toml | 14 +++++++------- xcm-support/Cargo.toml | 10 +++++----- xtokens/Cargo.toml | 30 +++++++++++++++--------------- 17 files changed, 112 insertions(+), 112 deletions(-) diff --git a/auction/Cargo.toml b/auction/Cargo.toml index 19ff4b9..b491a20 100644 --- a/auction/Cargo.toml +++ b/auction/Cargo.toml @@ -10,16 +10,16 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", 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 } orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } [features] default = ["std"] diff --git a/authority/Cargo.toml b/authority/Cargo.toml index 50527ba..a37a3c5 100644 --- a/authority/Cargo.toml +++ b/authority/Cargo.toml @@ -10,17 +10,17 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", 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 } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } [features] default = ["std"] diff --git a/benchmarking/Cargo.toml b/benchmarking/Cargo.toml index 1472b96..4eb603d 100644 --- a/benchmarking/Cargo.toml +++ b/benchmarking/Cargo.toml @@ -11,17 +11,17 @@ edition = "2018" serde = { version = "1.0.124", optional = true } paste = "1.0" codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-storage = { 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-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } [dev-dependencies] -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } hex-literal = "0.2.1" [features] diff --git a/currencies/Cargo.toml b/currencies/Cargo.toml index 9b649f2..4159171 100644 --- a/currencies/Cargo.toml +++ b/currencies/Cargo.toml @@ -10,19 +10,19 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", 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 } orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false } orml-utilities = { path = "../utilities", version = "0.4.1-dev", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } orml_tokens = { package = "orml-tokens", path = "../tokens", version = "0.4.1-dev" } [features] diff --git a/gradually-update/Cargo.toml b/gradually-update/Cargo.toml index e7a615e..d29f95f 100644 --- a/gradually-update/Cargo.toml +++ b/gradually-update/Cargo.toml @@ -10,12 +10,12 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", 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 } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } [features] default = ["std"] diff --git a/nft/Cargo.toml b/nft/Cargo.toml index a8e508c..6f43fcd 100644 --- a/nft/Cargo.toml +++ b/nft/Cargo.toml @@ -10,15 +10,15 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", 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 } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } [features] default = ["std"] diff --git a/oracle/Cargo.toml b/oracle/Cargo.toml index 8968a81..38ddbbc 100644 --- a/oracle/Cargo.toml +++ b/oracle/Cargo.toml @@ -10,19 +10,19 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", 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 } orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false } orml-utilities = { path = "../utilities", version = "0.4.1-dev", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } [features] default = ["std"] diff --git a/oracle/rpc/Cargo.toml b/oracle/rpc/Cargo.toml index 7c4f622..29219a1 100644 --- a/oracle/rpc/Cargo.toml +++ b/oracle/rpc/Cargo.toml @@ -11,8 +11,8 @@ codec = { package = "parity-scale-codec", version = "2.0.0" } jsonrpc-core = "15.0.0" jsonrpc-core-client = "15.0.0" jsonrpc-derive = "15.0.0" -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } orml-oracle-rpc-runtime-api = { path = "runtime-api", version = "0.4.1-dev" } diff --git a/oracle/rpc/runtime-api/Cargo.toml b/oracle/rpc/runtime-api/Cargo.toml index 636b98e..11fc70b 100644 --- a/oracle/rpc/runtime-api/Cargo.toml +++ b/oracle/rpc/runtime-api/Cargo.toml @@ -8,8 +8,8 @@ description = "Runtime API module for orml-oracle-rpc." [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } [features] default = ["std"] diff --git a/rewards/Cargo.toml b/rewards/Cargo.toml index dcc8b47..d37de37 100644 --- a/rewards/Cargo.toml +++ b/rewards/Cargo.toml @@ -10,15 +10,15 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { 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 } orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } [features] default = ["std"] diff --git a/tokens/Cargo.toml b/tokens/Cargo.toml index 778b61f..0b07118 100644 --- a/tokens/Cargo.toml +++ b/tokens/Cargo.toml @@ -10,16 +10,16 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { 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 } orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } # Patch doesn't work as `pallet-elections-phragmen` is now 4.0.0 version. Revert `rev` to `statemint` branch after # other `statemint` dependencies upgraded. pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", rev = "3f110196163b5ec03bac5ee188d60bedf3ebd91d" } diff --git a/traits/Cargo.toml b/traits/Cargo.toml index 0565394..0971fec 100644 --- a/traits/Cargo.toml +++ b/traits/Cargo.toml @@ -10,14 +10,14 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } 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 = "statemint", 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 } -xcm = { git = "https://github.com/paritytech/polkadot", branch = "statemint", default-features = false } +# xcm = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1", default-features = false } [features] default = ["std"] @@ -30,5 +30,5 @@ std = [ "num-traits/std", "frame-support/std", "orml-utilities/std", - "xcm/std", + # "xcm/std", ] diff --git a/unknown-tokens/Cargo.toml b/unknown-tokens/Cargo.toml index 39c3826..1b8cfb9 100644 --- a/unknown-tokens/Cargo.toml +++ b/unknown-tokens/Cargo.toml @@ -10,18 +10,18 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-std = { 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 } -xcm = { git = "https://github.com/paritytech/polkadot", branch = "statemint", default-features = false } +xcm = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1", default-features = false } orml-xcm-support = { path = "../xcm-support", default-features = false } [dev-dependencies] -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } [features] default = ["std"] diff --git a/utilities/Cargo.toml b/utilities/Cargo.toml index dc52e0d..feaa797 100644 --- a/utilities/Cargo.toml +++ b/utilities/Cargo.toml @@ -10,14 +10,14 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } [dev-dependencies] serde_json = "1.0.64" -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } [features] default = ["std"] diff --git a/vesting/Cargo.toml b/vesting/Cargo.toml index 1865eda..aee9134 100644 --- a/vesting/Cargo.toml +++ b/vesting/Cargo.toml @@ -10,16 +10,16 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", 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 } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } [features] default = ["std"] diff --git a/xcm-support/Cargo.toml b/xcm-support/Cargo.toml index d11a9ab..dc5dd28 100644 --- a/xcm-support/Cargo.toml +++ b/xcm-support/Cargo.toml @@ -10,13 +10,13 @@ edition = "2018" [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", 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 = "statemint", default-features = false } -xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "statemint", 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 } orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false } diff --git a/xtokens/Cargo.toml b/xtokens/Cargo.toml index 03960fc..f38a29e 100644 --- a/xtokens/Cargo.toml +++ b/xtokens/Cargo.toml @@ -10,30 +10,30 @@ edition = "2018" [dependencies] serde = { version = "1.0.124", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", 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 } -cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "statemint", 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 = "statemint", default-features = false } +xcm = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-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 = "statemint" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "statemint" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "statemint" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "statemint" } +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" } +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 = "statemint" } -parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "statemint" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "statemint" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "statemint" } +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" } orml-tokens = { path = "../tokens", version = "0.4.1-dev" } orml-traits = { path = "../traits", version = "0.4.1-dev" } -- GitLab