Skip to content
Snippets Groups Projects
Unverified Commit 67f792ce authored by John's avatar John Committed by GitHub
Browse files

Merge pull request #159 from StarArawn/update-cargo-files

Update cargo files
parents 8a2ccdbc 2a986ece
No related branches found
No related tags found
No related merge requests found
[package] [package]
name = "kayak_ui" name = "kayak_ui"
description = "A UI library built using the bevy game engine!"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
resolver = "2" 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/*"]
[workspace] [workspace]
members = ["kayak_ui_macros"] members = ["kayak_ui_macros", "kayak_font"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
...@@ -14,7 +20,7 @@ bevy = { git = "https://github.com/bevyengine/bevy", version = "0.9" } ...@@ -14,7 +20,7 @@ bevy = { git = "https://github.com/bevyengine/bevy", version = "0.9" }
bytemuck = "1.12" bytemuck = "1.12"
dashmap = "5.4" dashmap = "5.4"
kayak_font = { path = "./kayak_font" } kayak_font = { path = "./kayak_font" }
morphorm = { git = "https://github.com/geom3trik/morphorm", rev = "1243152d4cebea46fd3e5098df26402c73acae91" } morphorm = "0.3"
kayak_ui_macros = { path = "./kayak_ui_macros" } kayak_ui_macros = { path = "./kayak_ui_macros" }
indexmap = "1.9" indexmap = "1.9"
log = "0.4" log = "0.4"
......
[package] [package]
name = "kayak_font" name = "kayak_font"
description = "An SDF font renderer for Kayak UI and the Bevy game engine"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
authors = ["John Mitchell"]
homepage = "https://github.com/StarArawn/kayak_ui"
repository = "https://github.com/StarArawn/kayak_ui"
license-file = "../LICENSE"
exclude = ["assets/*", "screenshots/*"]
[features] [features]
default = ["bevy_renderer"] default = ["bevy_renderer"]
......
[package] [package]
name = "kayak_ui_macros" name = "kayak_ui_macros"
description = "A proc macro library that provides RSX like syntax for Kayak UI."
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
authors = ["John Mitchell"]
homepage = "https://github.com/StarArawn/kayak_ui"
repository = "https://github.com/StarArawn/kayak_ui"
license-file = "../LICENSE"
exclude = ["assets/*", "screenshots/*"]
[lib] [lib]
proc-macro = true proc-macro = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment