nalgebra/tests/lib.rs

19 lines
375 B
Rust
Raw Normal View History

#[cfg(feature = "abomonation-serialize")]
2017-08-16 01:36:38 +08:00
extern crate abomonation;
2018-02-02 19:26:35 +08:00
extern crate alga;
#[macro_use]
extern crate approx;
2017-07-25 23:19:18 +08:00
#[cfg(feature = "mint")]
extern crate mint;
extern crate nalgebra as na;
2018-02-02 19:26:35 +08:00
extern crate num_traits as num;
#[cfg(feature = "arbitrary")]
#[macro_use]
extern crate quickcheck;
extern crate rand;
extern crate serde_json;
mod core;
2018-02-03 17:44:32 +08:00
mod linalg;
mod geometry;