-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
38 lines (34 loc) · 1.02 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
[package]
name = "vleue_kinetoscope"
version = "0.3.1"
edition = "2021"
exclude = ["animated-gif.webp"]
authors = ["François Mockers <[email protected]>"]
description = "Animated GIF player for Bevy"
repository = "https://github.com/vleue/vleue_kinetoscope"
homepage = "https://github.com/vleue/vleue_kinetoscope"
documentation = "https://docs.rs/vleue_kinetoscope"
keywords = ["bevy", "animation", "gif"]
license = "MIT OR Apache-2.0"
readme = "README.md"
categories = ["game-development"]
[features]
default = ["gif", "webp"]
gif = ["image/gif"]
webp = ["image/webp"]
[dependencies]
image = { version = "0.25", default-features = false }
thiserror = "1.0"
bevy = { version = "0.15.0", default-features = false, features = [
"bevy_sprite",
"png", # TODO: change after https://github.com/bevyengine/bevy/issues/16563
] }
[dev-dependencies]
bevy = { version = "0.15.0", default-features = false, features = [
"bevy_window",
"bevy_sprite",
"bevy_ui",
"bevy_winit",
"default_font",
"x11",
] }