dimas-com 0.5.1

dimas-com - communication library for DiMAS
Documentation
// Copyright © 2023 Stephan Kunz
#![no_std]

//! dimas-com implements the communication capabilities.
//!

#[cfg(feature = "std")]
extern crate std;

// /// Builders
#[cfg(feature = "std")]
pub mod builder;
/// the different communicators
pub mod communicator;
/// Enums
pub mod enums;
/// Modules errors
pub mod error;
/// `Communicator` trait
pub mod traits;
/// zenoh implementation
pub mod zenoh;

// flatten
pub use communicator::*;