docs.rs failed to build gltf-validator-0.2.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
gltf-validator
A rust library and binary wrapper around the Khronos group glTF-Validator tool.
Use it like this to validate a glTF file:
use GltfValidator;
let validator = new.unwrap;
let report = validator.run.unwrap;
assert_eq!;
Publishing a new release
We have a GitHub action that pushes our releases here. It is triggered by pushing a new tag. So do the following:
- Bump the version in
Cargo.toml
. Commit it and push it up to the repo. - Create a tag with the new version:
git tag -sa v$(VERSION) -m "v$(VERSION)"
- Push the tag to the repo:
git push origin v$(VERSION)