gltf-reader 0.1.0

A simple glTF 2.0 reader using `serde` and `serde_json`
Documentation
1
2
3
4
5
6
7
8
9
10
# gltf-reader
A simple glTF 2.0 reader using `serde` and `serde_json`. This crate is pretty much a 1:1
implementation of the glTF schema in Rust. It is purely structural and performs no validation
of the glTF asset.

The structures try to borrow from the glTF JSON as much as possible. While not zero-copy, this
crate is way more memory efficient than other glTF readers. You can still obtain an owned copy
of any structure through `into_owned` methods, though.

This is a no-`std` crate. It does, however, still require `alloc`.