osom_tools_dev/
lib.rs

1//! A collection of test tools for osom projects.
2#![deny(warnings)]
3#![warn(clippy::all, clippy::pedantic)]
4#![allow(
5    clippy::needless_return,
6    clippy::redundant_field_names,
7    clippy::unreadable_literal,
8    clippy::inline_always,
9    clippy::module_name_repetitions,
10    clippy::len_without_is_empty
11)]
12
13pub mod traits {
14    pub use osom_tools_macros::traits::Pointerable;
15}
16
17pub mod macros {
18    pub use osom_tools_macros::{assert_eq_hex, assert_neq_hex, convert_to_fn, convert_to_fn_with_offset};
19}