Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_feathers/Cargo.toml
6592 views
1
[package]
2
name = "bevy_feathers"
3
version = "0.17.0-dev"
4
edition = "2024"
5
description = "A collection of UI widgets for building editors and utilities in Bevy"
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_a11y = { path = "../bevy_a11y", version = "0.17.0-dev" }
14
bevy_app = { path = "../bevy_app", version = "0.17.0-dev" }
15
bevy_asset = { path = "../bevy_asset", version = "0.17.0-dev" }
16
bevy_camera = { path = "../bevy_camera", version = "0.17.0-dev" }
17
bevy_color = { path = "../bevy_color", version = "0.17.0-dev" }
18
bevy_core_widgets = { path = "../bevy_core_widgets", version = "0.17.0-dev" }
19
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-dev" }
20
bevy_input_focus = { path = "../bevy_input_focus", version = "0.17.0-dev" }
21
bevy_log = { path = "../bevy_log", version = "0.17.0-dev" }
22
bevy_math = { path = "../bevy_math", version = "0.17.0-dev" }
23
bevy_picking = { path = "../bevy_picking", version = "0.17.0-dev" }
24
bevy_shader = { path = "../bevy_shader", version = "0.17.0-dev" }
25
bevy_platform = { path = "../bevy_platform", version = "0.17.0-dev" }
26
bevy_reflect = { path = "../bevy_reflect", version = "0.17.0-dev" }
27
bevy_render = { path = "../bevy_render", version = "0.17.0-dev" }
28
bevy_text = { path = "../bevy_text", version = "0.17.0-dev" }
29
bevy_ui = { path = "../bevy_ui", version = "0.17.0-dev", features = [
30
"bevy_ui_picking_backend",
31
] }
32
bevy_ui_render = { path = "../bevy_ui_render", version = "0.17.0-dev" }
33
bevy_window = { path = "../bevy_window", version = "0.17.0-dev" }
34
35
# other
36
accesskit = "0.21"
37
38
[features]
39
default = []
40
custom_cursor = ["bevy_window/custom_cursor"]
41
42
[lints]
43
workspace = true
44
45
[package.metadata.docs.rs]
46
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
47
all-features = true
48
49