gltf-reader 0.1.0

A simple glTF 2.0 reader using `serde` and `serde_json`
Documentation
  • Coverage
  • 62.3%
    190 out of 305 items documented0 out of 13 items with examples
  • Size
  • Source code size: 56.88 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 4.39 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • vxpm/gltf-reader
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • vxpm

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.