From a1279f8193c936831d2dffbea51222b626c6e9d3 Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Mon, 19 Feb 2024 17:49:01 +0100 Subject: [PATCH] update metadata --- hui-glium/Cargo.toml | 3 ++- hui-winit/Cargo.toml | 10 ++++++++++ hui/Cargo.toml | 1 + 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/hui-glium/Cargo.toml b/hui-glium/Cargo.toml index 5a3be53..facc2b8 100644 --- a/hui-glium/Cargo.toml +++ b/hui-glium/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "hui-glium" -description = "Glium backend for hUI" +description = "glium render backend for `hui`" repository = "https://github.com/griffi-gh/hui" +readme = "../README.md" authors = ["griffi-gh "] version = "0.1.0-alpha.3" edition = "2021" diff --git a/hui-winit/Cargo.toml b/hui-winit/Cargo.toml index 14f294b..011d1d7 100644 --- a/hui-winit/Cargo.toml +++ b/hui-winit/Cargo.toml @@ -1,7 +1,17 @@ [package] name = "hui-winit" +description = "winit platform backend for `hui`" +repository = "https://github.com/griffi-gh/hui" +readme = "../README.md" +authors = ["griffi-gh "] version = "0.1.0-alpha.3" edition = "2021" +license = "GPL-3.0-or-later" +publish = true +include = [ + "src/**/*.rs", + "Cargo.toml", +] [dependencies] hui = { version = "=0.1.0-alpha.3", path = "../hui", default-features = false } diff --git a/hui/Cargo.toml b/hui/Cargo.toml index b462011..da58f75 100644 --- a/hui/Cargo.toml +++ b/hui/Cargo.toml @@ -2,6 +2,7 @@ name = "hui" description = "Simple UI library for games and other interactive applications" repository = "https://github.com/griffi-gh/hui" +readme = "../README.md" authors = ["griffi-gh "] rust-version = "1.75" version = "0.1.0-alpha.3"