[package]
name = "bevy_spritesheet_animation"
version = "5.0.0"
description = "A Bevy plugin for animating sprites"
repository = "https://github.com/merwaaan/bevy_spritesheet_animation"
readme = "README.md"
license = "MIT"
keywords = ["bevy", "sprite", "animation"]
categories = ["game-development"]
edition = "2024"
resolver = "3"
exclude = ["assets/example.gif", "assets/example_3d.gif", "assets/example_cursor.gif", "assets/example_ui.gif"]
[features]
default = [
"custom_cursor"
]
custom_cursor = ["bevy/custom_cursor"]
[dependencies]
bevy = { version = "0.17.0", default-features = false, features = [
"bevy_log",
"bevy_sprite",
"bevy_pbr",
"bevy_ui"
] }
[dev-dependencies]
approx = "0.5.1"
bevy = { version = "0.17.0", features = [
"bevy_dev_tools"
] }
clap = { version = "4.5.16", features = ["derive"] }
rand = "0.9"
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
[package.metadata.docs.rs]
no-default-features = true