Skip to content

Commit 65c8c81

Browse files
authored
Update rust toolchain to latest nightly (#861)
* update toolchain * cargo.toml: exchange ' with " * fix clippy * cargo.toml: remove extra feautres - already imported via workspace
1 parent af06e12 commit 65c8c81

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ codec = { workspace = true, features = ["std"] }
99
env_logger = { workspace = true }
1010
log = { workspace = true }
1111
serde_json = { workspace = true, features = ["std"] }
12-
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "time"] }
12+
tokio = { workspace = true }
1313
tokio-util = { workspace = true }
1414

1515
# Substrate dependencies

node-api/src/events/event_details.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ impl<Hash: Encode + Decode> EventDetails<Hash> {
7373
}
7474

7575
/// Fetch details from the metadata for this event.
76-
pub fn event_metadata(&self) -> EventMetadataDetails {
76+
pub fn event_metadata(&self) -> EventMetadataDetails<'_> {
7777
self.inner.event_metadata_unchecked(&self.metadata)
7878
}
7979

primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = ["no-std"]
1111

1212

1313
[dependencies]
14-
codec = { workspace = true, features = ['derive'] }
14+
codec = { workspace = true, features = ["derive"] }
1515
impl-serde = { workspace = true }
1616
primitive-types = { workspace = true, features = ["serde_no_std", "scale-info"] }
1717
scale-info = { workspace = true, features = ["derive"] }

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2025-05-06"
2+
channel = "nightly-2025-07-14"
33
targets = ["wasm32-unknown-unknown", "wasm32-wasip1"]
44
profile = "default" # include rustfmt, clippy

0 commit comments

Comments
 (0)