ncomm_update_clients_and_servers/lib.rs
1//!
2//! NComm Update Clients and Servers
3//!
4//! This crate contains a set of commonly used update clients and servers that
5//! are created such that a request is a long-running task with updates and a
6//! final response containing the requested information.
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;