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