-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
35 lines (31 loc) · 1.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "bevy_spritesheet_animation"
version = "2.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 = "2021"
resolver = "2"
exclude = ["assets/example.gif", "assets/example3d.gif"]
[dependencies]
bevy = { version = "0.15.0", default-features = false, features = [
"bevy_pbr",
"bevy_sprite",
"bevy_ui",
] }
# Temporary dep until the bevy_image export is fixed
# https://github.com/bevyengine/bevy/issues/16563
bevy_internal = { version = "0.15", features = ["bevy_image"] }
[dev-dependencies]
approx = "0.5.1"
bevy = { version = "0.15.0", default-features = true }
clap = { version = "4.5.16", features = ["derive"] }
iyes_perf_ui = { git = "https://github.com/IyesGames/iyes_perf_ui.git", rev = "d8f3cbb2ec486b85a86b21e1aa32dcebd26ac884" }
rand = "0.8.5"
[profile.test]
inherits = "release"
[lints]
clippy.type_complexity = "allow"