06bfb803ff47beaff17d4ca1d73b90febcd59e59
[vector-math.git] / src / lib.rs
1 #![no_std]
2 #![deny(unconditional_recursion)]
3
4 #[cfg(any(feature = "std", test))]
5 extern crate std;
6
7 pub mod f16;
8 #[cfg(feature = "ir")]
9 pub mod ir;
10 pub mod scalar;
11 pub mod traits;