Skip to content

Commit a76ac00

Browse files
committed
chore: Bump required rust-toolchain version
1 parent 1f28877 commit a76ac00

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

crates/hyperion-proxy/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
#![feature(never_type)]
55
#![feature(stmt_expr_attributes)]
66
#![feature(gen_blocks)]
7+
#![expect(incomplete_features, reason = "generic_const_exprs")]
8+
#![feature(generic_const_exprs)]
79
#![allow(
810
clippy::redundant_pub_crate,
911
clippy::cast_possible_truncation,

crates/hyperion/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#![feature(trivial_bounds)]
2424
#![feature(pointer_is_aligned_to)]
2525
#![feature(thread_local)]
26+
#![feature(duration_constructors_lite)]
2627

2728
pub const CHUNK_HEIGHT_SPAN: u32 = 384; // 512; // usually 384
2829

crates/simd-utils/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![feature(portable_simd)]
22
#![feature(trusted_len)]
3-
#![feature(slice_as_chunks)]
43
#![feature(pointer_is_aligned_to)]
54

65
use core::simd;

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-02-22"
2+
channel = "nightly-2025-06-26"
33
components = ["rustfmt", "clippy"]
44
profile = "minimal"

0 commit comments

Comments
 (0)