mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
28 lines
No EOL
935 B
TOML
28 lines
No EOL
935 B
TOML
[package]
|
|
name = "bevy_ui"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
authors = ["Bevy Contributors <bevyengine@gmail.com>", "Carter Anderson <mcanders1@gmail.com>"]
|
|
description = "A custom ECS-driven UI framework built specifically for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
bevy_app = { path = "../bevy_app" }
|
|
bevy_asset = { path = "../bevy_asset" }
|
|
bevy_core = { path = "../bevy_core" }
|
|
bevy_type_registry = { path = "../bevy_type_registry" }
|
|
bevy_derive = { path = "../bevy_derive" }
|
|
bevy_ecs = { path = "../bevy_ecs" }
|
|
bevy_input = { path = "../bevy_input" }
|
|
bevy_sprite = { path = "../bevy_sprite" }
|
|
bevy_text = { path = "../bevy_text" }
|
|
bevy_transform = { path = "../bevy_transform" }
|
|
bevy_render = { path = "../bevy_render" }
|
|
bevy_window = { path = "../bevy_window" }
|
|
|
|
bevy_math = { path = "../bevy_math" }
|
|
|
|
stretch = "0.3" |