[package]
edition = "2018"
name = "gltf"
version = "0.13.0"
authors = ["David Harvey-Macaulay <alteous@outlook.com>"]
include = ["**/*.rs", "Cargo.toml"]
description = "glTF 2.0 loader"
homepage = "https://github.com/gltf-rs/gltf"
documentation = "https://docs.rs/gltf"
readme = "README.md"
keywords = ["glTF", "3D", "asset", "model", "scene"]
license = "MIT/Apache-2.0"
repository = "https://github.com/gltf-rs/gltf"
[[example]]
name = "gltf-display"
path = "examples/display/main.rs"
[[example]]
name = "gltf-export"
path = "examples/export/main.rs"
[[example]]
name = "gltf-roundtrip"
path = "examples/roundtrip/main.rs"
[[example]]
name = "gltf-tree"
path = "examples/tree/main.rs"
[dependencies.base64]
version = "0.10"
optional = true
[dependencies.byteorder]
version = "1.1"
[dependencies.gltf-json]
version = "0.13.0"
[dependencies.image]
version = "0.21"
features = ["jpeg", "png_codec"]
optional = true
default-features = false
[dependencies.lazy_static]
version = "1"
[dev-dependencies.approx]
version = "0.3"
[features]
KHR_lights_punctual = ["gltf-json/KHR_lights_punctual"]
KHR_materials_pbrSpecularGlossiness = ["gltf-json/KHR_materials_pbrSpecularGlossiness"]
default = ["import", "utils", "names"]
extras = ["gltf-json/extras"]
image_jpeg_rayon = ["image/jpeg_rayon"]
import = ["base64", "image"]
names = ["gltf-json/names"]
utils = []
[badges.travis-ci]
repository = "gltf-rs/gltf"