rkyv_test/impls/
mod.rs

1#[cfg(feature = "alloc")]
2mod alloc;
3mod core;
4#[cfg(feature = "rend")]
5mod rend;
6#[cfg(feature = "std")]
7mod std;
8
9// Support for various common crates. These are primarily to get users off the ground and build some
10// momentum.
11
12// These are NOT PLANNED to remain in rkyv for the final release. Much like serde, these
13// implementations should be moved into their respective crates over time. Before adding support for
14// another crate, please consider getting rkyv support in the crate instead.
15
16#[cfg(feature = "hashbrown")]
17mod hashbrown;
18#[cfg(feature = "indexmap")]
19mod indexmap;
20#[cfg(feature = "smallvec")]
21mod smallvec;
22#[cfg(feature = "tinyvec")]
23mod tinyvec;
24#[cfg(feature = "uuid")]
25mod uuid;