Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_core_widgets/Cargo.toml
6592 views
1
[package]
2
name = "bevy_core_widgets"
3
version = "0.17.0-dev"
4
edition = "2024"
5
description = "Unstyled common widgets for Bevy Engine"
6
homepage = "https://bevy.org"
7
repository = "https://github.com/bevyengine/bevy"
8
license = "MIT OR Apache-2.0"
9
keywords = ["bevy"]
10
11
[dependencies]
12
# bevy
13
bevy_app = { path = "../bevy_app", version = "0.17.0-dev" }
14
bevy_a11y = { path = "../bevy_a11y", version = "0.17.0-dev" }
15
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-dev" }
16
bevy_input = { path = "../bevy_input", version = "0.17.0-dev" }
17
bevy_input_focus = { path = "../bevy_input_focus", version = "0.17.0-dev" }
18
bevy_log = { path = "../bevy_log", version = "0.17.0-dev" }
19
bevy_math = { path = "../bevy_math", version = "0.17.0-dev" }
20
bevy_picking = { path = "../bevy_picking", version = "0.17.0-dev" }
21
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-dev" }
22
bevy_ui = { path = "../bevy_ui", version = "0.17.0-dev" }
23
24
# other
25
accesskit = "0.21"
26
27
[features]
28
default = []
29
30
[lints]
31
workspace = true
32
33
[package.metadata.docs.rs]
34
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
35
all-features = true
36
37