Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion dpdk_bindings/rust-toolchain

This file was deleted.

2 changes: 0 additions & 2 deletions examples/tcp-close/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Licensed under the MIT license.

#![deny(clippy::all)]
#![feature(extract_if)]
#![feature(hash_extract_if)]

//======================================================================================================================
// Imports
Expand Down
2 changes: 0 additions & 2 deletions examples/tcp-echo/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Licensed under the MIT license.

#![deny(clippy::all)]
#![feature(extract_if)]
#![feature(hash_extract_if)]

//======================================================================================================================
// Imports
Expand Down
2 changes: 0 additions & 2 deletions examples/tcp-wait/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Licensed under the MIT license.

#![deny(clippy::all)]
#![feature(extract_if)]
#![feature(hash_extract_if)]

//======================================================================================================================
// Modules
Expand Down
1 change: 0 additions & 1 deletion rust-toolchain

This file was deleted.

2 changes: 2 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[toolchain]
channel = "nightly-2026-02-11"
4 changes: 2 additions & 2 deletions src/collections/async_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ impl<T> AsyncQueue<T> {
}

#[allow(unused)]
pub fn values(&self) -> Iter<T> {
pub fn values(&self) -> Iter<'_, T> {
self.queue.iter()
}

#[allow(unused)]
pub fn values_mut(&mut self) -> IterMut<T> {
pub fn values_mut(&mut self) -> IterMut<'_, T> {
self.queue.iter_mut()
}

Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#![feature(test)]
#![feature(allocator_api)]
#![cfg_attr(target_os = "windows", feature(maybe_uninit_uninit_array))]
#![feature(hash_extract_if)]

mod collections;
pub mod inetstack;
Expand Down
1 change: 0 additions & 1 deletion xdp_bindings/rust-toolchain

This file was deleted.

Loading