edge-nal 0.6.0

Hosts a bunch of traits which are not yet available in the embedded-nal-async crate
Documentation
#![no_std]
#![allow(async_fn_in_trait)]
#![allow(clippy::uninlined_format_args)]
#![allow(unknown_lints)]

pub use multicast::*;
pub use raw::*;
pub use readable::*;
pub use tcp::*;
pub use timeout::*;
pub use udp::*;

pub use stack::*;

mod multicast;
mod raw;
mod readable;
mod stack;
mod tcp;
mod timeout;
mod udp;

pub mod io {
    pub use embedded_io_async::*;
}