diff --git a/Cargo.toml b/Cargo.toml index 8da59d5203ee8741d27119561f7139e937fd45f9..b283848ac8b98b2a8bc89831a1431cb8664a551b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,17 @@ [package] name = "kayak_ui" +description = "A UI library built using the bevy game engine!" version = "0.1.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/*"] [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 @@ -14,7 +20,7 @@ bevy = { git = "https://github.com/bevyengine/bevy", version = "0.9" } bytemuck = "1.12" dashmap = "5.4" kayak_font = { path = "./kayak_font" } -morphorm = { git = "https://github.com/geom3trik/morphorm", rev = "1243152d4cebea46fd3e5098df26402c73acae91" } +morphorm = "0.3" kayak_ui_macros = { path = "./kayak_ui_macros" } indexmap = "1.9" log = "0.4" diff --git a/kayak_font/Cargo.toml b/kayak_font/Cargo.toml index d759b09b693eea46cd8741a8e35556d8a54a85d5..ffa891c81afdb942570b44425b827f371a825589 100644 --- a/kayak_font/Cargo.toml +++ b/kayak_font/Cargo.toml @@ -1,7 +1,13 @@ [package] name = "kayak_font" +description = "An SDF font renderer for Kayak UI and the Bevy game engine" version = "0.1.0" 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] default = ["bevy_renderer"] diff --git a/kayak_ui_macros/Cargo.toml b/kayak_ui_macros/Cargo.toml index 2ef15e260f86fcd4a3da50e3417dfaa002093342..87d7c48ee253e218b77a52628362e8bcd7ef7351 100644 --- a/kayak_ui_macros/Cargo.toml +++ b/kayak_ui_macros/Cargo.toml @@ -1,7 +1,13 @@ [package] name = "kayak_ui_macros" +description = "A proc macro library that provides RSX like syntax for Kayak UI." version = "0.1.0" 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] proc-macro = true