-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
44 lines (39 loc) · 1.84 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
[package]
name = "bevy-ui-navigation"
authors = ["Nicola Papale"]
description = "A bevy plugin to make implementing ui navigation in your game a piece of cake"
license = "MIT OR Apache-2.0"
readme = "Readme.md"
keywords = ["bevy", "ui", "navigation", "keyboard", "gamepad"]
categories = ["game-development", "accessibility", "gui"]
repository = "https://github.com/nicopap/ui-navigation"
homepage = "https://github.com/nicopap/ui-navigation"
exclude = ["assets", ".github", "CHANGELOG.md"]
version = "0.33.1"
rust-version = "1.73"
edition = "2021"
[features]
default = ["bevy_ui", "bevy_reflect", "pointer_focus"]
bevy_reflect = []
bevy_ui = ["bevy/bevy_ui", "bevy/bevy_render", "bevy_mod_picking?/backend_bevy_ui"]
pointer_focus = ["bevy_mod_picking"]
cuicui_chirp = ["cuicui_dsl", "dep:cuicui_chirp"]
[dependencies]
bevy = { version = "0.12", default-features = false, features = ["bevy_asset"] }
bevy_mod_picking = { version = "0.17.0", optional = true, default-features = false }
cuicui_chirp = { version = "0.12.0", optional = true, default-features = false, features = ["macros"] }
cuicui_dsl = { version = "0.12.0", optional = true }
non-empty-vec = { version = "0.2.2", default-features = false }
[dev-dependencies]
fastrand = "2.0.1"
cuicui_layout_bevy_ui = { version = "0.12.0", default-features = false }
cuicui_layout = { version = "0.12.0", default-features = false }
bevy = { version = "0.12", default-features = false, features = ["bevy_asset", "png", "x11", "default_font", "bevy_gilrs"] }
[package.metadata.release]
pre-release-replacements = [
{search="\\| 0.12 \\| [0-9.]* \\|",replace="| 0.12 | {{version}} |",file="Readme.md"},
{search="bevy-ui-navigation = \"[0-9.]*\"",replace="bevy-ui-navigation = \"{{version}}\"",file="Readme.md"},
]
[[example]]
name = "ultimate_menu_navigation"
required-features = ["cuicui_chirp", "cuicui_layout_bevy_ui/chirp"]