-
John Mitchell authored03843946
This project manages its dependencies using Cargo.
Learn more
Cargo.toml 981 B
[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.9" }
bytemuck = "1.12"
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"
[dev-dependencies]
fastrand = "1.8"
bevy-inspector-egui = "0.14"
[[example]]
name = "tabs"
path = "examples/tabs/tabs.rs"
[[example]]
name = "todo"
path = "examples/todo/todo.rs"