[package] name = "kayak_ui" description = "A UI library built using the bevy game engine!" version = "0.2.0" edition = "2021" resolver = "2" authors = ["John Mitchell"] homepage = "https://github.com/StarArawn/kayak_ui" repository = "https://github.com/StarArawn/kayak_ui" license-file = "LICENSE" exclude = ["assets/*", "screenshots/*", "book"] [workspace] members = ["kayak_ui_macros", "kayak_font"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bevy = { version = "0.10", default-features = false, features = ["bevy_render", "bevy_asset", "bevy_winit", "bevy_core_pipeline"] } bytemuck = { version = "1.12", features = ["derive"] } dashmap = "5.4" kayak_font = { path = "./kayak_font", version = "0.2" } morphorm = "0.3" kayak_ui_macros = { path = "./kayak_ui_macros", version = "0.2" } indexmap = "1.9" log = "0.4" bitflags = "1.3.2" reorder = "2.1" resources = "1.1" instant = "0.1" [dev-dependencies] fastrand = "1.8" bevy-inspector-egui = "0.18" bevy = { version = "0.10", default-features = true } [[example]] name = "tabs" path = "examples/tabs/tabs.rs" [[example]] name = "todo" path = "examples/todo/todo.rs"