2020-04-06 14:20:53 -07:00
|
|
|
[package]
|
|
|
|
name = "bevy_ui"
|
2024-02-17 01:24:25 -08:00
|
|
|
version = "0.13.0"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-08-09 17:24:27 -07:00
|
|
|
description = "A custom ECS-driven UI framework built specifically for Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
2021-07-23 21:11:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-09 17:24:27 -07:00
|
|
|
keywords = ["bevy"]
|
2020-04-06 14:20:53 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2020-08-09 17:39:28 -07:00
|
|
|
# bevy
|
2024-02-17 01:24:25 -08:00
|
|
|
bevy_a11y = { path = "../bevy_a11y", version = "0.13.0" }
|
|
|
|
bevy_app = { path = "../bevy_app", version = "0.13.0" }
|
|
|
|
bevy_asset = { path = "../bevy_asset", version = "0.13.0" }
|
|
|
|
bevy_core_pipeline = { path = "../bevy_core_pipeline", version = "0.13.0" }
|
|
|
|
bevy_derive = { path = "../bevy_derive", version = "0.13.0" }
|
|
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.13.0" }
|
|
|
|
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.13.0" }
|
|
|
|
bevy_input = { path = "../bevy_input", version = "0.13.0" }
|
|
|
|
bevy_log = { path = "../bevy_log", version = "0.13.0" }
|
|
|
|
bevy_math = { path = "../bevy_math", version = "0.13.0" }
|
|
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.13.0", features = [
|
2023-11-20 19:04:14 -06:00
|
|
|
"bevy",
|
2022-06-21 22:57:59 +00:00
|
|
|
] }
|
2024-02-17 01:24:25 -08:00
|
|
|
bevy_render = { path = "../bevy_render", version = "0.13.0" }
|
|
|
|
bevy_sprite = { path = "../bevy_sprite", version = "0.13.0" }
|
|
|
|
bevy_text = { path = "../bevy_text", version = "0.13.0", optional = true }
|
|
|
|
bevy_transform = { path = "../bevy_transform", version = "0.13.0" }
|
|
|
|
bevy_window = { path = "../bevy_window", version = "0.13.0" }
|
|
|
|
bevy_utils = { path = "../bevy_utils", version = "0.13.0" }
|
2020-07-24 23:04:45 -07:00
|
|
|
|
2020-08-09 17:39:28 -07:00
|
|
|
# other
|
2023-04-17 17:21:38 +01:00
|
|
|
taffy = { version = "0.3.10" }
|
2024-01-03 14:52:16 -03:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
2021-12-14 03:58:23 +00:00
|
|
|
bytemuck = { version = "1.5", features = ["derive"] }
|
2022-10-25 09:55:31 +00:00
|
|
|
thiserror = "1.0.0"
|
2023-11-18 14:58:48 -06:00
|
|
|
|
2024-01-03 14:52:16 -03:00
|
|
|
[features]
|
|
|
|
serialize = ["serde"]
|
|
|
|
|
2023-11-18 14:58:48 -06:00
|
|
|
[lints]
|
|
|
|
workspace = true
|