Skip to content

Commit 0c1e298

Browse files
authored
Use polkadot-0.9.1 branch. (#491)
* Use polkadot-0.9.1 branch. * Comment out xcm related crate.
1 parent 3b9acc2 commit 0c1e298

File tree

17 files changed

+112
-112
lines changed

17 files changed

+112
-112
lines changed

auction/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
13+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
14+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1515

16-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
17-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
16+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
17+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1818
orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }
1919

2020
[dev-dependencies]
21-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
22-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
21+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
22+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
2323

2424
[features]
2525
default = ["std"]

authority/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
15-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
13+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
14+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
15+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1616

17-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
18-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
17+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
18+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1919

2020
[dev-dependencies]
21-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
22-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
23-
pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
21+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
22+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
23+
pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
2424

2525
[features]
2626
default = ["std"]

benchmarking/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ edition = "2018"
1111
serde = { version = "1.0.124", optional = true }
1212
paste = "1.0"
1313
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
14-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
15-
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
16-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
17-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
18-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
19-
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
20-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
21-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
15+
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
16+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
17+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
18+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
19+
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
20+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
21+
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
2222

2323
[dev-dependencies]
24-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
24+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
2525
hex-literal = "0.2.1"
2626

2727
[features]

currencies/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
15-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
13+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
14+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
15+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1616

17-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
18-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
17+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
18+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1919

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

2323
[dev-dependencies]
24-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
25-
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
24+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
25+
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
2626
orml_tokens = { package = "orml-tokens", path = "../tokens", version = "0.4.1-dev" }
2727

2828
[features]

gradually-update/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
15-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
16-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
17-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
18-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
13+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
14+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
15+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
16+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
17+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
18+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1919

2020
[features]
2121
default = ["std"]

nft/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
13+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
14+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1515

16-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
17-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
16+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
17+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1818

1919
[dev-dependencies]
20-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
21-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
20+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
21+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
2222

2323
[features]
2424
default = ["std"]

oracle/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13-
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
15-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
16-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
13+
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
14+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
15+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
16+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1717

18-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
19-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
18+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
19+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
2020

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

2424
[dev-dependencies]
25-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
25+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
2626

2727
[features]
2828
default = ["std"]

oracle/rpc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ codec = { package = "parity-scale-codec", version = "2.0.0" }
1111
jsonrpc-core = "15.0.0"
1212
jsonrpc-core-client = "15.0.0"
1313
jsonrpc-derive = "15.0.0"
14-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
15-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
16-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
14+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
15+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
16+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
1717

1818
orml-oracle-rpc-runtime-api = { path = "runtime-api", version = "0.4.1-dev" }

oracle/rpc/runtime-api/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ description = "Runtime API module for orml-oracle-rpc."
88

99
[dependencies]
1010
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
11-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
12-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
11+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
12+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1313

1414
[features]
1515
default = ["std"]

rewards/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
15-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
16-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
17-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
13+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
14+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
15+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
16+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
17+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1818
orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }
1919

2020
[dev-dependencies]
21-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
21+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
2222

2323
[features]
2424
default = ["std"]

tokens/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
15-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
16-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
13+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
14+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
15+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
16+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1717
orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }
1818

1919
[dev-dependencies]
20-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
21-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
22-
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "statemint" }
20+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
21+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
22+
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
2323
# Patch doesn't work as `pallet-elections-phragmen` is now 4.0.0 version. Revert `rev` to `statemint` branch after
2424
# other `statemint` dependencies upgraded.
2525
pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", rev = "3f110196163b5ec03bac5ee188d60bedf3ebd91d" }

traits/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
14-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
15-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
13+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
14+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
15+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1616
num-traits = { version = "0.2.14", default-features = false }
1717
impl-trait-for-tuples = "0.2.1"
18-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "statemint", default-features = false }
18+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
1919
orml-utilities = { path = "../utilities", version = "0.4.1-dev", default-features = false }
20-
xcm = { git = "https://github.com/paritytech/polkadot", branch = "statemint", default-features = false }
20+
# xcm = { git = "https://github.com/paritytech/polkadot", branch = "polkadot-v0.9.1", default-features = false }
2121

2222
[features]
2323
default = ["std"]
@@ -30,5 +30,5 @@ std = [
3030
"num-traits/std",
3131
"frame-support/std",
3232
"orml-utilities/std",
33-
"xcm/std",
33+
# "xcm/std",
3434
]

0 commit comments

Comments
 (0)