coap-message-implementations 0.2.0

Implementations of coap-message traits, and tools for building them
Documentation
//! CoAP message implementation tools and implementations
//!
//! This crate contains utilities for creating own implementations of the [`coap_message`] traits, as
//! well as some basic implementations that may be useful for CoAP libraries.
//!
//! The implementations aim for being easy and straightforward. While they are largely usable on
//! embedded systems, it is expected that more optimized versions are used in that area when byte
//! comes to shove.
#![doc = document_features::document_features!()]
#![no_std]
#![cfg_attr(feature = "_nightly_docs", feature(doc_cfg))]

pub mod option_extension;
pub mod option_iteration;

pub mod inmemory;

mod error;

#[cfg(feature = "alloc")]
pub mod heap;

#[cfg(test)]
mod test;