nalgebra/tests/lib.rs
Eduard Bopp 3a1fb0ed88 Fix feature flagging for abomonation-serialize
The tests can now be run without the abomonation feature. Also fixes a
bug in the feature flagging for abomonation.
2017-09-18 20:10:32 +02:00

18 lines
332 B
Rust

#[cfg(feature = "arbitrary")]
#[macro_use]
extern crate quickcheck;
#[macro_use]
extern crate approx;
extern crate num_traits as num;
extern crate serde_json;
#[cfg(feature = "abomonation-serialize")]
extern crate abomonation;
extern crate rand;
extern crate alga;
extern crate nalgebra as na;
mod core;
mod linalg;
mod geometry;