diff --git a/src/cgmath/lib.rs b/src/cgmath/lib.rs index 308c920..edaee38 100644 --- a/src/cgmath/lib.rs +++ b/src/cgmath/lib.rs @@ -36,7 +36,9 @@ //! `look_at`, `from_angle`, `from_euler`, and `from_axis_angle` methods. //! These are provided for convenience. -mod array; +extern crate debug; + +pub mod array; pub mod matrix; pub mod quaternion;