nalgebra/tests/lib.rs
Diggory Hardy a4f11c3393 Edition 2018: remove useless extern crate declarations
This keeps all those with a rename, macro import or other function.
2019-09-16 12:44:43 +01:00

14 lines
243 B
Rust

#[macro_use]
extern crate approx;
extern crate nalgebra as na;
extern crate num_traits as num;
#[cfg(feature = "arbitrary")]
#[macro_use]
extern crate quickcheck;
mod core;
mod geometry;
mod linalg;
//#[cfg(feature = "sparse")]
//mod sparse;