Skip to content
Snippets Groups Projects
This project manages its dependencies using Cargo. Learn more
Cargo.toml 753 B
[package]
name = "kayak_ui"
version = "0.1.0"
edition = "2021"
resolver = "2"

[workspace]
members = [
    "bevy_kayak_ui",
    "kayak_widgets",
    "kayak_core",
    "kayak_render_macros",
    "kayak_font",
]

[features]
default = ["bevy_renderer"]
bevy_renderer = ["bevy_kayak_ui", "kayak_font"]
internal = ["kayak_core/internal", "kayak_render_macros/internal"]

[dependencies]
kayak_core = { path = "kayak_core" }
bevy_kayak_ui = { path = "bevy_kayak_ui", optional = true }
kayak_font = { path = "kayak_font", optional = true }
kayak_render_macros = { path = "kayak_render_macros" }

[dev-dependencies]
bevy = { git = "https://github.com/StarArawn/bevy", rev = "bcca341d696c66d0173d8b0ac7a1b23b4b9e775c" }
kayak_widgets = { path = "kayak_widgets" }