Pull in the change for unsoundness in lifetime to get the build working

This commit is contained in:
Shane Snover 2023-09-24 20:04:33 -06:00
parent c4dcfa540a
commit 7caf1febe3

View file

@ -64,7 +64,7 @@ pub use embassy_net_stack::*;
#[cfg(feature = "std")] #[cfg(feature = "std")]
pub mod std_stack { pub mod std_stack {
pub trait NetworkStackDriver {} pub trait NetworkStackDriver: 'static {}
impl NetworkStackDriver for () {} impl NetworkStackDriver for () {}