glam/
features.rs

1#[cfg(feature = "approx")]
2pub mod impl_approx;
3
4#[cfg(feature = "bytemuck")]
5pub mod impl_bytemuck;
6
7#[cfg(feature = "mint")]
8pub mod impl_mint;
9
10#[cfg(feature = "rand")]
11pub mod impl_rand;
12
13#[cfg(feature = "serde")]
14pub mod impl_serde;
15
16#[cfg(feature = "speedy")]
17pub mod impl_speedy;
18
19#[cfg(feature = "rkyv")]
20pub mod impl_rkyv;
21
22#[cfg(feature = "encase")]
23pub mod impl_encase;
24
25#[cfg(feature = "zerocopy")]
26pub mod impl_zerocopy;
27
28#[cfg(feature = "arbitrary")]
29pub mod impl_arbitrary;