diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml index b419250b..36f64dbd 100644 --- a/embassy-net/Cargo.toml +++ b/embassy-net/Cargo.toml @@ -30,7 +30,7 @@ as-slice = { version = "0.1.4" } generic-array = { version = "0.14.4", default-features = false } stable_deref_trait = { version = "1.2.0", default-features = false } futures = { version = "0.3.5", default-features = false, features = [ "async-await" ]} -atomic-pool = "0.1.0" +atomic-pool = "0.2.0" [dependencies.smoltcp] version = "0.7.0" diff --git a/embassy-net/src/lib.rs b/embassy-net/src/lib.rs index 13f14b83..88dcf0aa 100644 --- a/embassy-net/src/lib.rs +++ b/embassy-net/src/lib.rs @@ -1,8 +1,4 @@ #![cfg_attr(not(feature = "std"), no_std)] -#![feature(const_fn)] -#![feature(const_generics)] -#![feature(const_evaluatable_checked)] -#![allow(incomplete_features)] // This mod MUST go first, so that the others see its macros. pub(crate) mod fmt;