mesh-loader 0.0.1

Fast parser for 3D-model-formats.
Documentation
#![warn(
    missing_debug_implementations,
    rust_2018_idioms,
    single_use_lifetimes,
    unreachable_pub
)]
#![warn(clippy::exhaustive_enums, clippy::exhaustive_structs)]

#[cfg(any(feature = "collada", feature = "stl"))]
#[macro_use]
mod error;

mod utils;
#[cfg(feature = "collada")]
use utils::*;

mod common;
pub use common::*;

#[cfg(feature = "collada")]
pub mod collada;
// #[cfg(feature = "obj")]
// pub mod obj;
#[cfg(feature = "stl")]
pub mod stl;