[package]
edition = "2024"
rust-version = "1.88"
name = "animsmith"
version = "0.1.0"
build = "build.rs"
include = [
"src/**",
"assets/**",
"examples/**",
"tests/**",
"testdata/**",
"build.rs",
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"THIRD-PARTY.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A linter for skeletal animation clips: game-engine-friendliness checks for glTF/GLB and FBX animations"
documentation = "https://docs.rs/animsmith"
readme = "README.md"
keywords = [
"animation",
"gltf",
"lint",
"gamedev",
"fbx",
]
categories = [
"command-line-utilities",
"development-tools",
"game-development",
"graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mmannerm/animsmith"
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
targets = []
[features]
default = [
"fbx",
"report",
]
fbx = ["dep:animsmith-fbx"]
report = ["dep:animsmith-report"]
[[bin]]
name = "animsmith"
path = "src/main.rs"
[[example]]
name = "embed"
path = "examples/embed.rs"
[[example]]
name = "gen_example_assets"
path = "examples/gen_example_assets.rs"
[[test]]
name = "build_version"
path = "tests/build_version.rs"
[[test]]
name = "cli_contract"
path = "tests/cli_contract.rs"
[[test]]
name = "convert_mesh"
path = "tests/convert_mesh.rs"
[[test]]
name = "docs_index"
path = "tests/docs_index.rs"
[[test]]
name = "docs_links"
path = "tests/docs_links.rs"
[[test]]
name = "examples_cookbook"
path = "tests/examples_cookbook.rs"
[[test]]
name = "measure_mesh"
path = "tests/measure_mesh.rs"
[[test]]
name = "mixamo_tutorial"
path = "tests/mixamo_tutorial.rs"
[[test]]
name = "scene_write_gltf"
path = "tests/scene_write_gltf.rs"
[dependencies.animsmith-core]
version = "0.1.0"
[dependencies.animsmith-fbx]
version = "0.1.0"
optional = true
[dependencies.animsmith-gltf]
version = "0.1.0"
[dependencies.animsmith-report]
version = "0.1.0"
optional = true
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1.1"
[dev-dependencies.gltf]
version = "1.4"
features = [
"utils",
"names",
]
default-features = false
[dev-dependencies.pulldown-cmark]
version = "0.13"
default-features = false
[dev-dependencies.tempfile]
version = "3"