cgmath/src/omath.rc
Brendan Zabarauskas bf144110b7 Add pub attributes
2012-09-29 18:41:48 +10:00

14 lines
280 B
Plaintext

#[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;