osom_lib_primitives/
lib.rs

1//! A crate for various primitives.
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#![no_std]
13#![cfg_attr(docsrs, feature(doc_cfg))]
14#![cfg_attr(docsrs, allow(unused_attributes))]
15
16mod does_not_have_to_be_used;
17pub use does_not_have_to_be_used::*;
18
19mod length;
20pub use length::*;
21
22mod key_value_pair;
23pub use key_value_pair::*;