ncomm_nodes/lib.rs
1//!
2//! Commonly used nodes for integrating NComm with other useful
3//! tools.
4//!
5
6#![cfg_attr(not(feature = "std"), no_std)]
7#[cfg(feature = "alloc")]
8extern crate alloc;
9
10#[deny(missing_docs)]
11#[cfg(feature = "rerun")]
12pub mod rerun;
13#[cfg(feature = "rerun")]
14pub use rerun::RerunNode;