-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
49 lines (44 loc) · 1.04 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
47
48
49
[package]
name = "bevy_easings"
version = "0.15.0"
authors = ["François Mockers <[email protected]>"]
edition = "2021"
description = "Easing plugin for Bevy"
repository = "https://github.com/vleue/bevy_easings"
homepage = "https://github.com/vleue/bevy_easings"
documentation = "https://docs.rs/bevy_easings"
keywords = ["bevy", "animation", "easing"]
license = "MIT OR Apache-2.0"
readme = "README.md"
exclude = ["examples/*.webp"]
categories = ["game-development"]
[dependencies]
interpolation = "0.3"
[dependencies.bevy]
version = "0.15.0"
default-features = false
[dev-dependencies.bevy]
version = "0.15.0"
default-features = false
features = [
"bevy_window",
"bevy_render",
"bevy_sprite",
"bevy_ui",
"bevy_text",
"bevy_sprite",
"bevy_render",
"bevy_winit",
"x11",
"bevy_asset",
"bevy_core_pipeline",
"default_font",
"png",
]
[dev-dependencies]
rand = "0.8"
[features]
default = ["render", "sprite", "ui"]
"render" = ["bevy/bevy_render"]
"sprite" = ["bevy/bevy_sprite"]
"ui" = ["bevy/bevy_ui"]