osom_lib_hash/
lib.rs

1//! A crate implementing a `hash_map` and `hash_set` algorithms. And also couple of hash functions.
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
16pub mod hash_set;
17pub mod hashers;