Skip to content
Snippets Groups Projects
This project manages its dependencies using Cargo. Learn more
Cargo.toml 842 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/bevyengine/bevy", rev = "9a16a4d01830297987db40b45f03382ed3acad62" }
kayak_widgets = { path = "kayak_widgets", features = ["bevy_renderer"] }

[[example]]
name = "todo"
path = "examples/todo/todo.rs"