lib.rs 196 B

123456789101112131415
  1. #[macro_use]
  2. extern crate glium;
  3. extern crate image;
  4. extern crate cgmath;
  5. extern crate therm_util;
  6. pub mod model;
  7. pub mod graph;
  8. #[cfg(test)]
  9. mod tests {
  10. #[test]
  11. fn it_works() {
  12. }
  13. }