ergot 0.12.0

Eloquence in messaging
Documentation
//! Interface Implementations
//!
//! Interfaces are the "wire format" of ergot. They determine how messages are handled between
//! two devices. Interfaces are typically held by the Profile used by a netstack.

#[cfg(feature = "tokio-std")]
pub mod tokio_tcp;
#[cfg(feature = "tokio-std")]
pub mod tokio_udp;

#[cfg(feature = "tokio-serial-v5")]
pub mod tokio_serial_cobs;

#[cfg(feature = "embassy-usb-v0_5")]
pub mod embassy_usb;

#[cfg(feature = "embassy-net-v0_7")]
pub mod embassy_net_udp;

#[cfg(feature = "nusb-v0_1")]
pub mod nusb_bulk;

#[cfg(feature = "embedded-io-async-v0_6")]
pub mod embedded_io;