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 = "rkyv")]
17pub mod impl_rkyv;