[package]
edition = "2024"
rust-version = "1.89"
name = "animato-tween"
version = "0.8.0"
authors = ["Aarambh Dev Hub"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tween<T> single-value animation for the Animato animation library."
readme = "README.md"
keywords = [
"animation",
"tween",
"easing",
"interpolation",
"no_std",
]
categories = [
"no-std",
"game-development",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AarambhDevHub/animato"
resolver = "2"
[features]
alloc = []
default = []
serde = [
"dep:serde",
"animato-core/serde",
]
std = [
"animato-core/std",
"alloc",
]
[lib]
name = "animato_tween"
path = "src/lib.rs"
[dependencies.animato-core]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true