nalgebra/tests/core/mod.rs
Ben Kimock 698e130c3b Remove abomonation support
Abomonation has numerous soundness problems which have been
well-documented in its issue tracker for over 2 years. Some of them
could be fixed, but some are fundamental to its design. If a user wants
super-fast ser/de, they should use rkyv.
2022-02-05 17:15:08 -05:00

20 lines
269 B
Rust

mod blas;
mod cg;
mod conversion;
mod edition;
mod empty;
mod matrix;
mod matrix_slice;
#[cfg(feature = "mint")]
mod mint;
mod serde;
#[cfg(feature = "compare")]
mod matrixcompare;
#[cfg(feature = "arbitrary")]
pub mod helper;
#[cfg(feature = "macros")]
mod macros;