coap_message_implementations/lib.rs
1//! CoAP message implementation tools and implementations
2//!
3//! This crate contains utilities for creating own implementations of the [coap_message] traits, as
4//! well as some basic implementations that may be useful for CoAP libraries.
5//!
6//! The implementations aim for being easy and straightforward. While they are largely usable on
7//! embedded systems, it is expected that more optimized versions are used in that area when byte
8//! comes to shove.
9#![doc = document_features::document_features!()]
10#![no_std]
11#![cfg_attr(feature = "_nightly_docs", feature(doc_auto_cfg))]
12
13pub mod option_extension;
14pub mod option_iteration;
15
16pub mod inmemory;
17pub mod inmemory_write;
18
19mod error;
20
21#[cfg(feature = "alloc")]
22pub mod heap;
23
24#[cfg(test)]
25mod test;