Skip to main content

ncomm_clients_and_servers/
lib.rs

1//!
2//! NComm Clients and Servers
3//!
4//! This crate contains a set of commonly used servers and their
5//! respective clients to enable the sharing of data between
6//! Nodes.
7//!
8
9#![deny(missing_docs)]
10#![cfg_attr(not(feature = "std"), no_std)]
11#[cfg(feature = "alloc")]
12extern crate alloc;
13
14#[cfg(feature = "std")]
15pub mod local;
16
17#[cfg(feature = "std")]
18pub mod udp;
19
20pub mod serial;