[ci] Update rust to 1.74 (#2545)

cc https://github.com/paritytech/ci_cd/issues/900

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Dónal Murray <donal.murray@parity.io>
Co-authored-by: Bastian Köcher <info@kchr.de>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: command-bot <>
This commit is contained in:
Alexander Samusev
2023-12-07 09:57:43 +01:00
committed by GitHub
parent 833478f262
commit cd63276d31
27 changed files with 229 additions and 79 deletions
@@ -1,3 +1,21 @@
error[E0603]: struct `RuntimeVersion` is private
--> tests/ui/impl_incorrect_method_signature.rs:37:27
|
37 | fn version() -> sp_api::RuntimeVersion {
| ^^^^^^^^^^^^^^ private struct
|
note: the struct `RuntimeVersion` is defined here
--> $WORKSPACE/substrate/primitives/api/src/lib.rs
|
| use sp_version::RuntimeVersion;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider importing one of these items instead
|
37 | fn version() -> sp_api::__private::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
37 | fn version() -> sp_version::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
error[E0053]: method `test` has an incompatible type for trait
--> tests/ui/impl_incorrect_method_signature.rs:33:17
|
@@ -1,3 +1,21 @@
error[E0603]: struct `RuntimeVersion` is private
--> tests/ui/type_reference_in_impl_runtime_apis_call.rs:39:27
|
39 | fn version() -> sp_api::RuntimeVersion {
| ^^^^^^^^^^^^^^ private struct
|
note: the struct `RuntimeVersion` is defined here
--> $WORKSPACE/substrate/primitives/api/src/lib.rs
|
| use sp_version::RuntimeVersion;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider importing one of these items instead
|
39 | fn version() -> sp_api::__private::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
39 | fn version() -> sp_version::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
error[E0053]: method `test` has an incompatible type for trait
--> tests/ui/type_reference_in_impl_runtime_apis_call.rs:33:17
|