bevy_transform_interpolation 0.5.0

Transform interpolation for fixed timesteps for the Bevy game engine
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"
name = "bevy_transform_interpolation"
version = "0.5.0"
authors = ["Joona Aalto <jondolf.dev@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Transform interpolation for fixed timesteps for the Bevy game engine"
documentation = "https://docs.rs/bevy_transform_interpolation"
readme = "README.md"
keywords = [
    "gamedev",
    "interpolation",
    "easing",
    "bevy",
]
categories = ["game-development"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Jondolf/bevy_transform_interpolation"

[features]
critical-section = ["bevy/critical-section"]
default = ["std"]
libm = ["bevy/libm"]
serialize = [
    "dep:serde",
    "bevy/serialize",
]
std = ["bevy/std"]

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

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

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

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

[dependencies.bevy]
version = "0.19"
default-features = false

[dependencies.serde]
version = "1.0"
optional = true
default-features = false

[dev-dependencies.bevy]
version = "0.19"
features = [
    "2d",
    "ui",
]
default-features = false

[lints.clippy]
alloc_instead_of_core = "warn"
std_instead_of_alloc = "warn"
std_instead_of_core = "warn"