#![cfg_attr(not(test), no_std)]
#![allow(unknown_lints)]
#![allow(clippy::needless_return)]
#![allow(clippy::deref_addrof)]
#![allow(clippy::manual_is_multiple_of)]
pub mod prelude;
pub mod prelude_dev;
pub mod alloc_vec;
pub mod axes_pair_index;
pub mod axis_index;
pub mod error;
pub mod flags;
pub mod format_layout;
pub mod layout;
pub mod pack_array;
pub mod tensordot_to_einsum;
pub mod util;
#[cfg(feature = "rayon")]
pub mod par_iter;
#[cfg(all(not(clippy), feature = "col_major", feature = "row_major"))]
compile_error!("Cargo features col_major and row_major are mutually exclusive. Please enable only one of them.");