1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![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;