Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/hyperion-proxy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#![feature(never_type)]
#![feature(stmt_expr_attributes)]
#![feature(gen_blocks)]
#![expect(incomplete_features, reason = "generic_const_exprs")]
#![feature(generic_const_exprs)]
#![allow(
clippy::redundant_pub_crate,
clippy::cast_possible_truncation,
Expand Down
1 change: 1 addition & 0 deletions crates/hyperion/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#![feature(trivial_bounds)]
#![feature(pointer_is_aligned_to)]
#![feature(thread_local)]
#![feature(duration_constructors_lite)]

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

Expand Down
1 change: 0 additions & 1 deletion crates/simd-utils/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#![feature(portable_simd)]
#![feature(trusted_len)]
#![feature(slice_as_chunks)]
#![feature(pointer_is_aligned_to)]

use core::simd;
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2025-02-22"
channel = "nightly-2025-06-26"
components = ["rustfmt", "clippy"]
profile = "minimal"
Loading