Skip to main content

osom_lib_reprc/
lib.rs

1//! This crate holds tools that help with `#[repr(C)]` representations.
2//!
3//! This crate is `#![no_std]`.
4#![deny(warnings)]
5#![allow(unused_features)]
6#![cfg_attr(docsrs, feature(doc_cfg))]
7#![cfg_attr(docsrs, allow(unused_attributes))]
8#![warn(clippy::all, clippy::pedantic)]
9#![no_std]
10
11pub mod macros;
12pub mod traits;