dimas_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright © 2024 Stephan Kunz
#![no_std]

//! Core of `DiMAS`

/// Enums
pub mod enums;
/// Error handling
pub mod error;
/// `Message`, `Request`, `Response`, `Feedback`
pub mod message_types;
/// Traits
pub mod traits;
/// Utilities
pub mod utils;