#[link(name = "omath", vers = "0.1", author = "Brendan Zabarauskas")]; #[comment = "Linear algebra library for Rust. Incomplete and probably buggy."]; #[crate_type = "lib"]; extern mod std; pub mod mat; pub mod math; pub mod projection; pub mod quat; pub mod vec; #[test] pub mod test { pub mod test_mat; pub mod test_math; pub mod test_projection; pub mod test_quat; pub mod test_vec; }