1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! A minimal crate for loading glTF.
//!
//! This crate is auto-generated from the specification's Json Schema,
//! so some comments may not exactly match the Rust names.

mod glb;
mod gltf_json;

pub use glb::*;
pub use gltf_json::*;

pub use kserde::{FromJson, ToJson};