osom_tools_runtime/
lib.rs

1//! A collection of runtime 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#![no_std]
13#![cfg_attr(docsrs, feature(doc_cfg))]
14#![cfg_attr(docsrs, allow(unused_attributes))]
15
16#[cfg(feature = "std_alloc")]
17extern crate alloc;
18
19mod macros;
20
21mod length;
22pub use length::*;
23
24pub mod allocator;
25pub mod arrays;
26pub mod hash_functions;
27pub mod immutable_string;