Skip to main content

osom_lib_hash_tables/
lib.rs

1//! This crate defines hash table traits, with some implementations.
2//!
3//! The 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#![allow(clippy::redundant_field_names, clippy::inline_always, clippy::unreadable_literal)]
10#![cfg_attr(not(feature = "std"), no_std)]
11
12pub mod bytell;
13pub(crate) mod helpers;
14pub mod traits;
15
16pub mod defaults;
17
18#[cfg(feature = "std")]
19mod std_hash_map;