animato 0.1.0

Professional-grade, renderer-agnostic animation library for Rust. Zero mandatory dependencies. no_std-ready.
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 = "2024"
rust-version = "1.85"
name = "animato"
version = "0.1.0"
authors = ["Aarambh Dev Hub"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Professional-grade, renderer-agnostic animation library for Rust. Zero mandatory dependencies. no_std-ready."
readme = "README.md"
keywords = [
    "animation",
    "tween",
    "spring",
    "easing",
    "game-development",
]
categories = [
    "game-development",
    "graphics",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AarambhDevHub/animato"
resolver = "2"

[features]
default = [
    "std",
    "tween",
    "spring",
    "driver",
]
driver = ["dep:animato-driver"]
serde = [
    "animato-core/serde",
    "animato-tween?/serde",
    "animato-spring?/serde",
]
spring = [
    "dep:animato-spring",
    "animato-spring?/alloc",
]
std = [
    "animato-core/std",
    "dep:animato-driver",
]
tween = ["dep:animato-tween"]

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

[dependencies.animato-core]
version = "0.1"

[dependencies.animato-driver]
version = "0.1"
optional = true

[dependencies.animato-spring]
version = "0.1"
optional = true

[dependencies.animato-tween]
version = "0.1"
optional = true

[dev-dependencies.animato-core]
version = "0.1"

[dev-dependencies.animato-driver]
version = "0.1"

[dev-dependencies.animato-spring]
version = "0.1"
features = ["alloc"]

[dev-dependencies.animato-tween]
version = "0.1"

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