ncomm_utils/
lib.rs

1//!
2//! Utilities for NComm
3//!
4//! The main usage of this crate is for traits and items
5//! that don't really fit in any of the other NComm traits, but
6//! are still useful for developing applications utilizing NComm.
7//!
8
9#![deny(missing_docs)]
10#![cfg_attr(not(feature = "std"), no_std)]
11#[cfg(feature = "alloc")]
12extern crate alloc;
13
14pub mod packing;