No description
Find a file
2026-05-22 23:23:30 -03:00
src readme 2026-05-22 23:23:30 -03:00
.gitignore first 2026-05-20 22:44:13 -03:00
Cargo.lock rename 2026-05-22 23:19:23 -03:00
Cargo.toml rename 2026-05-22 23:19:23 -03:00
README.md readme 2026-05-22 23:23:30 -03:00

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.