-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
77 lines (66 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "bevy_splash_screen"
description = "A plugin for bevy which allows you to create screens to show the brands and development teams behind your amazing game"
version = "0.6.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/SergioRibera/bevy_splash_screen"
keywords = ["gamedev", "ui", "bevy"]
[workspace]
resolver = "2"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[dev-dependencies]
bevy = { version = "0.14.1", default-features = false, features = [
"multi_threaded",
"bevy_asset",
"bevy_winit",
"bevy_render",
"bevy_sprite",
"bevy_state",
"png",
] }
[features]
default = []
dev = [
"bevy/bevy_asset",
"bevy/bevy_scene",
"bevy/bevy_winit",
"bevy/bevy_core_pipeline",
"bevy/bevy_render",
"bevy/bevy_sprite",
"bevy/bevy_state",
"bevy/bevy_text",
"bevy/bevy_ui",
"bevy/multi_threaded",
"bevy/png",
"bevy/ktx2",
"bevy/x11",
"bevy/bevy_gizmos",
"bevy/default_font",
]
[[example]]
name = "custom_skip"
required-features = ["dev"]
path = "./examples/custom_skip.rs"
[[example]]
name = "layouts"
required-features = ["dev"]
path = "./examples/layouts.rs"
[[example]]
name = "screens"
required-features = ["dev"]
path = "./examples/screens.rs"
[[example]]
name = "simple"
required-features = ["dev"]
path = "./examples/simple.rs"
[dependencies]
bevy = { version = "0.14.1", default-features = false , features = [
"bevy_state",
] }
bevy_tweening = "0.11.0"
[patch.crates-io]
bevy_tweening = { git = "https://github.com/SergioRibera/bevy_tweening", branch = "infinite_mirrored" }