lib.rs 214 B

12345678910111213141516
  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. pub mod farbfeld;
  9. #[cfg(test)]
  10. mod tests {
  11. #[test]
  12. fn it_works() {
  13. }
  14. }