Bill Thiede bcf6b6d5d0
All checks were successful
continuous-integration/drone/push Build is passing
Remove unnecessary crates.
2019-10-10 21:37:21 -07:00

37 lines
640 B
Rust

pub mod aabb;
pub mod bvh;
pub mod camera;
pub mod constant_medium;
pub mod cuboid;
pub mod flip_normals;
pub mod hitable;
pub mod hitable_list;
pub mod kdtree;
pub mod material;
pub mod moving_sphere;
pub mod noise;
pub mod ray;
pub mod rect;
pub mod renderer;
pub mod rotate;
pub mod scenes;
pub mod sphere;
pub mod texture;
pub mod translate;
pub mod vec3;
extern crate crossbeam_channel;
extern crate image;
#[macro_use]
extern crate log;
extern crate num_cpus;
extern crate rand;
#[macro_use]
extern crate structopt;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate prometheus;