[dependencies.bevy]
default-features = false
features = ["bevy_log", "bevy_sprite", "bevy_pbr", "bevy_ui"]
version = "0.17.0"
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.bevy]
features = ["bevy_dev_tools"]
version = "0.17.0"
[dev-dependencies.clap]
features = ["derive"]
version = "4.5.16"
[dev-dependencies.rand]
version = "0.9"
[[example]]
name = "3d"
path = "examples/3d.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "character"
path = "examples/character.rs"
[[example]]
name = "composition"
path = "examples/composition.rs"
[[example]]
name = "cursor"
path = "examples/cursor.rs"
[[example]]
name = "events"
path = "examples/events.rs"
[[example]]
name = "headless"
path = "examples/headless.rs"
[[example]]
name = "parameters"
path = "examples/parameters.rs"
[[example]]
name = "progress"
path = "examples/progress.rs"
[[example]]
name = "stress"
path = "examples/stress.rs"
[features]
custom_cursor = ["bevy/custom_cursor"]
default = ["custom_cursor"]
[lib]
name = "bevy_spritesheet_animation"
path = "src/lib.rs"
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["game-development"]
description = "A Bevy plugin for animating sprites"
edition = "2024"
exclude = ["assets/example.gif", "assets/example3d.gif"]
keywords = ["bevy", "sprite", "animation"]
license = "MIT"
name = "bevy_spritesheet_animation"
readme = "README.md"
repository = "https://github.com/merwaaan/bevy_spritesheet_animation"
resolver = "3"
version = "4.0.0"
[[test]]
name = "direction"
path = "tests/direction.rs"
[[test]]
name = "duration"
path = "tests/duration.rs"
[[test]]
name = "easing"
path = "tests/easing.rs"
[[test]]
name = "markers"
path = "tests/markers.rs"
[[test]]
name = "names"
path = "tests/names.rs"
[[test]]
name = "plugin"
path = "tests/plugin.rs"
[[test]]
name = "progress"
path = "tests/progress.rs"
[[test]]
name = "repetition"
path = "tests/repetition.rs"
[[test]]
name = "spritesheet"
path = "tests/spritesheet.rs"
[[test]]
name = "weird"
path = "tests/weird.rs"