698e130c3b
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.
20 lines
269 B
Rust
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;
|