[package]
edition = "2024"
rust-version = "1.88"
name = "animsmith-core"
version = "0.1.0"
build = false
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 = "Engine-agnostic data model, sampling, measurements, and checks for the animsmith animation-clip linter"
documentation = "https://docs.rs/animsmith-core"
readme = "README.md"
keywords = [
"animation",
"gltf",
"lint",
"gamedev",
"fbx",
]
categories = [
"game-development",
"graphics",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mmannerm/animsmith"
[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
targets = [
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]
[features]
fixtures = []
[lib]
name = "animsmith_core"
path = "src/lib.rs"
[[test]]
name = "check_catalog_docs"
path = "tests/check_catalog_docs.rs"
[[test]]
name = "checks"
path = "tests/checks.rs"
[[test]]
name = "diff_api"
path = "tests/diff_api.rs"
[[test]]
name = "m3"
path = "tests/m3.rs"
[[test]]
name = "profile"
path = "tests/profile.rs"
[[test]]
name = "sample"
path = "tests/sample.rs"
[[test]]
name = "semantic"
path = "tests/semantic.rs"
[[test]]
name = "transform"
path = "tests/transform.rs"
[dependencies.glam]
version = "0.33"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde_json]
version = "1"