[package]
edition = "2024"
rust-version = "1.85"
name = "animato-core"
version = "0.2.0"
authors = ["Aarambh Dev Hub"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits and easing system for the Animato animation library."
readme = "README.md"
keywords = [
"animation",
"easing",
"tween",
"no_std",
"interpolation",
]
categories = [
"no-std",
"mathematics",
"game-development",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AarambhDevHub/animato"
resolver = "2"
[features]
default = []
serde = ["dep:serde"]
std = []
[lib]
name = "animato_core"
path = "src/lib.rs"
[dependencies.libm]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true