From a86aadd8d83206650a8fb42d4900cbf335998d38 Mon Sep 17 00:00:00 2001
From: John Mitchell <startoaster23@gmail.com>
Date: Sun, 13 Nov 2022 10:51:12 -0500
Subject: [PATCH] Updated cargo files with more info.

---
 Cargo.toml                 | 6 ++++++
 kayak_font/Cargo.toml      | 5 +++++
 kayak_ui_macros/Cargo.toml | 5 +++++
 3 files changed, 16 insertions(+)

diff --git a/Cargo.toml b/Cargo.toml
index 8da59d5..7ac73e7 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 d759b09..71c13b4 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 2ef15e2..af8f42c 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
-- 
GitLab