elvwf

8 commits
Updated 2026-06-13 11:19:44
src
src/lib.rs
#![cfg_attr(not(test), no_std)]

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

pub(crate) mod error;
pub(crate) mod raw;

pub mod scalar;
pub mod slice;

pub mod header;
pub mod msg;

pub use elvwf_derive::{Wired, WiredBlank, WiredEnum};
pub use msg::{Error, inner::Wired};

pub mod prelude {
    pub use crate::{
        Error, Wired, WiredEnum,
        header::{get, has, put, trigger},
        msg,
        scalar::{self, Ne},
        slice,
    };
}