diff --git a/Cargo.toml b/Cargo.toml index 8da59d5203ee8741d27119561f7139e937fd45f9..7ac73e7f713b11163c1bcdacc60758e21eeeeee5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,14 @@ [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"] diff --git a/kayak_font/Cargo.toml b/kayak_font/Cargo.toml index d759b09b693eea46cd8741a8e35556d8a54a85d5..71c13b44f97711f7958cd9c8380a271e76cc1f98 100644 --- a/kayak_font/Cargo.toml +++ b/kayak_font/Cargo.toml @@ -2,6 +2,11 @@ name = "kayak_font" 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..af8f42c9f77f22600b0e8cb339f8aa2ec65e8f31 100644 --- a/kayak_ui_macros/Cargo.toml +++ b/kayak_ui_macros/Cargo.toml @@ -2,6 +2,11 @@ name = "kayak_ui_macros" 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