-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
46 lines (38 loc) · 1.26 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
36
37
38
39
40
41
42
43
44
45
46
[package]
authors = ["KirmesBude <[email protected]>"]
name = "bevy_trickfilm"
version = "0.10.0-dev"
edition = "2021"
description = "Bevy plugin for spritesheet manifest loading"
repository = "https://github.com/KirmesBude/bevy_trickfilm"
license = "MIT OR Apache-2.0"
keywords = ["gamedev", "bevy", "animation", "spritesheet", "assets"]
categories = ["game-development"]
readme = "README.md"
exclude = ["/assets"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy_trickfilm_derive = { path = "derive", version = "0.10.0-dev" }
bevy = { version = "0.15", default-features = false, features = ["bevy_asset", "bevy_sprite", "bevy_ui", "bevy_animation"] }
serde = { version = "1", features = ["derive"] }
ron = "0.8"
thiserror = "1"
[dev-dependencies]
bevy = { version = "0.15", features = ["file_watcher"] }
bevy_titan = "0.9"
bevy_asset_loader = { version = "0.22", features = ["2d"] }
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "demo_titan"
path = "examples/demo_titan.rs"
[[example]]
name = "bevy_asset_loader"
path = "examples/bevy_asset_loader.rs"
[[example]]
name = "pausing_animations"
path = "examples/pausing_animations.rs"
[[example]]
name = "events"
path = "examples/events.rs"