Fix paths for rust 0.5.

This commit is contained in:
Erick Tryzelaar 2012-12-19 19:53:41 -08:00
parent 9e46931ecc
commit 0af1594db4

View file

@ -18,24 +18,16 @@ pub mod vec;
#[test]
mod test {
#[path = "test/test_gltypes.rs"]
mod test_gltypes;
#[path = "test/test_mat.rs"]
mod test_mat;
#[path = "test/test_quat.rs"]
mod test_quat;
#[path = "test/test_vec.rs"]
mod test_vec;
}
pub mod funs {
#[path = "funs/common.rs"]
pub mod common;
#[path = "funs/exponential.rs"]
pub mod exponential;
#[path = "funs/projection.rs"]
pub mod projection;
#[path = "funs/triganomic.rs"]
pub mod triganomic;
#[test]