draco-gltf 0.2.0

Load and save full glTF 2.0 and 2.1 draft scenes with Draco geometry
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "draco-gltf"
version = "0.2.0"
build = false
exclude = ["tests/roundtrip_test.rs"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Load and save full glTF 2.0 and 2.1 draft scenes with Draco geometry"
readme = "README.md"
keywords = [
    "draco",
    "gltf",
    "glb",
    "compression",
    "scene",
]
categories = [
    "compression",
    "graphics",
    "rendering::data-formats",
]
license = "Apache-2.0"
repository = "https://github.com/Filyus/draco-rust"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
accessors = ["read"]
default = ["full"]
document = ["draco-io/gltf-container"]
draco-decode = [
    "geometry",
    "draco-io/draco-decode",
    "draco-core/decoder",
    "draco-core/point_cloud_decode",
    "draco-core/edgebreaker_valence_decode",
]
draco-encode = [
    "write",
    "draco-decode",
    "draco-core/encoder",
]
full = [
    "read",
    "accessors",
    "strict-validation",
    "draco-decode",
    "write",
    "draco-encode",
]
geometry = [
    "document",
    "draco-io/gltf-geometry",
]
read = [
    "geometry",
    "resources",
]
resources = ["document"]
strict-validation = ["document"]
test = []
write = [
    "read",
    "strict-validation",
]

[lib]
name = "draco_gltf"
path = "src/lib.rs"

[[example]]
name = "gltf_tool"
path = "examples/gltf_tool.rs"
required-features = ["draco-encode"]

[dependencies.draco-core]
version = "1.0.0"
default-features = false

[dependencies.draco-io]
version = "0.3.0"
default-features = false

[dependencies.thiserror]
version = "2.0"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(docsrs)"]