725: Remove feature rust-1_28 r=Dirbaio a=Dirbaio Rust 1.28 is wayyyyyy below our MSRV so this feature is effectively useless. Co-authored-by: Dario Nieuwenhuis <dirbaio@dirbaio.net>
@@ -74,9 +74,6 @@ default = [
"async"
]
-# experimental; do not use; no guarantees provided that this feature will be kept
-"rust-1_28" = []
-
[[example]]
name = "packet2pcap"
path = "utils/packet2pcap.rs"
@@ -1,8 +1,5 @@
-#[cfg(not(feature = "rust-1_28"))]
use alloc::collections::VecDeque;
use alloc::vec::Vec;
-#[cfg(feature = "rust-1_28")]
-use alloc::VecDeque;
use crate::phy::{self, Device, DeviceCapabilities, Medium};
use crate::time::Instant;