Browse Source

Merge #725

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>
bors[bot] 2 years ago
parent
commit
25a8c4603c
2 changed files with 0 additions and 6 deletions
  1. 0 3
      Cargo.toml
  2. 0 3
      src/phy/loopback.rs

+ 0 - 3
Cargo.toml

@@ -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"

+ 0 - 3
src/phy/loopback.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;