| 10 // Extra setup for builds with the nightly compiler |
10 // Extra setup for builds with the nightly compiler |
| 11 #![cfg_attr( |
11 #![cfg_attr( |
| 12 nightly, |
12 nightly, |
| 13 feature( |
13 feature( |
| 14 maybe_uninit_array_assume_init, |
14 maybe_uninit_array_assume_init, |
| 15 maybe_uninit_slice, |
|
| 16 float_minimum_maximum, |
15 float_minimum_maximum, |
| 17 get_mut_unchecked, |
16 get_mut_unchecked, |
| 18 cow_is_borrowed |
|
| 19 ) |
17 ) |
| 20 )] |
18 )] |
| 21 |
19 |
| 22 #[macro_use] |
20 #[macro_use] |
| 23 pub(crate) mod metaprogramming; |
|
| 24 pub mod collection; |
21 pub mod collection; |
| 25 pub mod error; |
22 pub mod error; |
| 26 pub mod euclidean; |
23 pub mod euclidean; |
| 27 pub mod instance; |
24 pub mod instance; |
| 28 pub mod maputil; |
25 pub mod maputil; |