Upgrading parity-scale-codec to v3 (#10825)

* Upgraded dependencies

* Adapting code to scale v3

* Empty commit to trigger CI

* Triggering CI

* Fixing UI test

* Remove superfluous dev-dep added by #9228

* Cryout for CI
This commit is contained in:
wigy
2022-02-24 15:34:34 +01:00
committed by GitHub
parent eeb267e1d6
commit 535325d2e6
176 changed files with 528 additions and 450 deletions
+3 -3
View File
@@ -27,7 +27,7 @@ futures = "0.3.16"
jsonrpc-pubsub = "18.0"
jsonrpc-core = "18.0"
rand = "0.7.3"
parking_lot = "0.11.2"
parking_lot = "0.12.0"
log = "0.4.11"
futures-timer = "3.0.1"
exit-future = "0.2.0"
@@ -56,7 +56,7 @@ sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" }
sc-client-api = { version = "4.0.0-dev", path = "../api" }
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" }
codec = { package = "parity-scale-codec", version = "2.0.0" }
codec = { package = "parity-scale-codec", version = "3.0.0" }
sc-executor = { version = "0.10.0-dev", path = "../executor" }
sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" }
sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" }
@@ -74,7 +74,7 @@ sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing" }
tracing = "0.1.29"
tracing-futures = { version = "0.2.4" }
parity-util-mem = { version = "0.10.2", default-features = false, features = [
parity-util-mem = { version = "0.11.0", default-features = false, features = [
"primitive-types",
] }
async-trait = "0.1.50"
+2 -2
View File
@@ -18,7 +18,7 @@ tempfile = "3.1.0"
tokio = { version = "1.15.0", features = ["time"] }
log = "0.4.8"
fdlimit = "0.2.1"
parking_lot = "0.11.2"
parking_lot = "0.12.0"
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
sp-state-machine = { version = "0.11.0", path = "../../../primitives/state-machine" }
@@ -40,5 +40,5 @@ sc-client-api = { version = "4.0.0-dev", path = "../../api" }
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
sc-executor = { version = "0.10.0-dev", path = "../../executor" }
sp-panic-handler = { version = "4.0.0", path = "../../../primitives/panic-handler" }
parity-scale-codec = "2.3.1"
parity-scale-codec = "3.0.0"
sp-tracing = { version = "4.0.0", path = "../../../primitives/tracing" }