Skip to content

Commit af0970a

Browse files
authored
Fix ci (#593)
* bump scale codec version * bump rust version
1 parent 7b79ffd commit af0970a

File tree

22 files changed

+22
-22
lines changed

22 files changed

+22
-22
lines changed

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions-rs/toolchain@v1
4040
with:
4141
profile: minimal
42-
toolchain: nightly-2021-06-01
42+
toolchain: nightly-2021-06-17
4343
components: rustfmt
4444
target: wasm32-unknown-unknown
4545
default: true

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions-rs/toolchain@v1
3434
with:
3535
profile: minimal
36-
toolchain: nightly-2021-06-01
36+
toolchain: nightly-2021-06-17
3737
components: rustfmt
3838
target: wasm32-unknown-unknown
3939
override: true

auction/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1313
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515

authority/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1313
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

bencher/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rand = {version = "0.8.3", optional = true }
2020
linregress = { version = "0.4.0", optional = true }
2121
serde = { version = "1.0.119", optional = true, features = ['derive'] }
2222
serde_json = {version = "1.0.64", optional = true }
23-
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"], default-features = false }
23+
codec = { package = "parity-scale-codec", version = "2.2.0", features = ["derive"], default-features = false }
2424
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
2525
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
2626
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

benchmarking/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2018"
1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
1212
paste = "1.0"
13-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
13+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1414
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1616
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

currencies/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1313
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

gradually-update/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["max-encoded-len"] }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = ["max-encoded-len"] }
1313
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

nft/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["max-encoded-len"] }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = ["max-encoded-len"] }
1313
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515

oracle/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1313
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

oracle/rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "Apache-2.0"
77
description = "RPC module for orml-oracle."
88

99
[dependencies]
10-
codec = { package = "parity-scale-codec", version = "2.0.0" }
10+
codec = { package = "parity-scale-codec", version = "2.2.0" }
1111
jsonrpc-core = "15.0.0"
1212
jsonrpc-core-client = "15.0.0"
1313
jsonrpc-derive = "15.0.0"

oracle/rpc/runtime-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "Apache-2.0"
77
description = "Runtime API module for orml-oracle-rpc."
88

99
[dependencies]
10-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
10+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = ["derive"] }
1111
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1212
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1313

rewards/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["max-encoded-len"] }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = ["max-encoded-len"] }
1313
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

tokens/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["max-encoded-len"] }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = ["max-encoded-len"] }
1313
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

traits/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1313
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

unknown-tokens/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1313
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

utilities/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1313
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

vesting/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["max-encoded-len"] }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = ["max-encoded-len"] }
1313
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

weight-meter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ orml-bencher = { path = "../bencher", default-features = false, optional = true
1616

1717
[dev-dependencies]
1818
serde = { version = "1.0.124" }
19-
codec = { package = "parity-scale-codec", version = "2.0.0" }
19+
codec = { package = "parity-scale-codec", version = "2.2.0" }
2020
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
2121
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
2222
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

xcm-support/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Acala Developers"]
88
edition = "2018"
99

1010
[dependencies]
11-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
11+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1212

1313
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

xcm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Acala Developers"]
88
edition = "2018"
99

1010
[dependencies]
11-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
11+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1212

1313
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

xtokens/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.124", optional = true }
12-
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false }
1313
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1414
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
1515
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }

0 commit comments

Comments
 (0)