devela/data/codec/hash/
mod.rs
1#![doc = crate::doc_!(extends: hash)]
6#![cfg_attr(
8 any(not(feature = "hash"), not(feature = "cast")),
9 doc = "## Features\nTo compile the missing items, enable the `hash` and `cast` features."
10)]
11mod fx; mod reexports;
15
16#[cfg(feature = "hash")]
17crate::items! {
18 mod pengy; #[cfg(feature = "cast")]
21 mod fnv; }
23
24crate::items! { #[allow(unused)]
26 pub use _mods::*;
27 #[allow(unused)] #[doc(hidden, no_inline)]
28 pub use _always::*;
29
30 mod _mods {
31 pub use super::{fx::*, reexports::*};
32
33 #[cfg(feature = "hash")]
34 #[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "hash")))]
35 pub use super::pengy::*;
36
37 #[cfg(all(feature = "hash", feature = "cast"))]
38 #[cfg_attr(feature = "nightly_doc", doc(cfg(all(feature = "hash", feature = "cast"))))]
39 pub use super::fnv::*;
40 }
41 pub(super) mod _all {
42 #[doc(inline)]
43 pub use super::_mods::*;
44 }
45 pub(super) mod _always { #![allow(unused)]
46 pub use super::{fx::*, reexports::*};
47 }
48}