oxigaf-flame 0.1.0

FLAME parametric head model — LBS, normal maps, mesh sampling
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 = "oxigaf-flame"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FLAME parametric head model — LBS, normal maps, mesh sampling"
readme = "README.md"
keywords = [
    "flame",
    "3d-model",
    "parametric",
    "head-model",
    "avatar",
]
categories = [
    "graphics",
    "algorithms",
    "science",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxigaf"

[features]
default = []
full = [
    "parallel",
    "safetensors",
    "npz",
]
full_nightly = [
    "simd",
    "parallel",
    "safetensors",
    "npz",
]
npz = ["ndarray-npy/npz"]
parallel = ["dep:rayon"]
safetensors = []
simd = []

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

[[example]]
name = "convert_npy_to_safetensors"
path = "examples/convert_npy_to_safetensors.rs"

[[example]]
name = "create_flame_sequence"
path = "examples/create_flame_sequence.rs"

[[example]]
name = "load_flame_sequence"
path = "examples/load_flame_sequence.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "proptest"
path = "tests/proptest.rs"

[[test]]
name = "simd_tests"
path = "tests/simd_tests.rs"

[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"

[[bench]]
name = "flame_bench"
path = "benches/flame_bench.rs"
harness = false

[[bench]]
name = "lbs_forward"
path = "benches/lbs_forward.rs"
harness = false

[[bench]]
name = "normal_map"
path = "benches/normal_map.rs"
harness = false

[[bench]]
name = "rodrigues"
path = "benches/rodrigues.rs"
harness = false

[[bench]]
name = "simd_ops"
path = "benches/simd_ops.rs"
harness = false
required-features = ["simd"]

[dependencies.bytemuck]
version = "1"
features = ["derive"]

[dependencies.chrono]
version = "0.4"

[dependencies.image]
version = "0.25"
features = ["exr"]

[dependencies.lru]
version = "0.16"

[dependencies.nalgebra]
version = "0.34"

[dependencies.ndarray]
version = "0.17"

[dependencies.ndarray-npy]
version = "0.10"

[dependencies.rand]
version = "0.10"

[dependencies.rayon]
version = "1.11"
optional = true

[dependencies.safetensors]
version = "0.7"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.proptest]
version = "1.10"

[dev-dependencies.rayon]
version = "1.11"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "json",
]