
# Objective Part of #19236 ## Solution Adds a new `bevy_core_widgets` crate containing headless widget implementations. This PR adds a single `CoreButton` widget, more widgets to be added later once this is approved. ## Testing There's an example, ui/core_widgets. --------- Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
33 lines
940 B
TOML
33 lines
940 B
TOML
[package]
|
|
name = "bevy_core_widgets"
|
|
version = "0.16.0-dev"
|
|
edition = "2024"
|
|
description = "Unstyled common widgets for B Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.16.0-dev" }
|
|
bevy_a11y = { path = "../bevy_a11y", version = "0.16.0-dev" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-dev" }
|
|
bevy_input = { path = "../bevy_input", version = "0.16.0-dev" }
|
|
bevy_input_focus = { path = "../bevy_input_focus", version = "0.16.0-dev" }
|
|
bevy_picking = { path = "../bevy_picking", version = "0.16.0-dev" }
|
|
bevy_ui = { path = "../bevy_ui", version = "0.16.0-dev" }
|
|
|
|
# other
|
|
accesskit = "0.19"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
|
|
all-features = true
|