From 5a7f46b7e1d3091085b7675991ff6bc83ecca2ed Mon Sep 17 00:00:00 2001 From: Nic Hartley Date: Fri, 13 Oct 2023 02:18:41 -0400 Subject: [PATCH] update and fix up versions, manifests, etc --- Cargo.lock | 2 +- tuig-iosys/Cargo.toml | 1 + tuig-pm/Cargo.toml | 3 ++- tuig-ui/Cargo.toml | 8 +++++--- tuig/Cargo.toml | 3 ++- 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7c9c05d..318cb1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1231,7 +1231,7 @@ dependencies = [ [[package]] name = "tuig-ui" -version = "0.1.0" +version = "0.0.4" dependencies = [ "paste", "tuig-iosys", diff --git a/tuig-iosys/Cargo.toml b/tuig-iosys/Cargo.toml index 9f2dd1d..0bfd566 100644 --- a/tuig-iosys/Cargo.toml +++ b/tuig-iosys/Cargo.toml @@ -5,6 +5,7 @@ edition = "2021" description = "Multi-backend terminal-like text grid rendering." license = "BSD-3-Clause" repository = "https://github.com/nic-hartley/tuig" +rust-version = "1.63" [features] std = [] diff --git a/tuig-pm/Cargo.toml b/tuig-pm/Cargo.toml index 66f7cfa..41ce47d 100644 --- a/tuig-pm/Cargo.toml +++ b/tuig-pm/Cargo.toml @@ -2,9 +2,10 @@ name = "tuig-pm" version = "0.0.4" edition = "2021" -description = "Procedural macro crate for tuig and tuig-iosys" +description = "Procedural macro crate for tuig/tuig-ui/tuig-iosys" license = "BSD-3-Clause" repository = "https://github.com/nic-hartley/tuig" +rust-version = "1.63" [lib] proc-macro = true diff --git a/tuig-ui/Cargo.toml b/tuig-ui/Cargo.toml index d3281a6..c771541 100644 --- a/tuig-ui/Cargo.toml +++ b/tuig-ui/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "tuig-ui" -version = "0.1.0" +version = "0.0.4" edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +description = "A predictable immediate-mode UI system for character grids." +license = "BSD-3-Clause" +repository = "https://github.com/nic-hartley/tuig" +rust-version = "1.63" [dependencies] paste = "1.0.14" diff --git a/tuig/Cargo.toml b/tuig/Cargo.toml index 6fbac85..96acb69 100644 --- a/tuig/Cargo.toml +++ b/tuig/Cargo.toml @@ -6,6 +6,7 @@ description = "Flexible, portable, and fast game engine for textmode games." license = "BSD-3-Clause" repository = "https://github.com/nic-hartley/tuig" readme = "../README.md" +rust-version = "1.63" [features] # See tuig::docs::features for crucial information. @@ -30,7 +31,7 @@ required-features = ["io_nop", "__run"] [dependencies] tuig-iosys = { version = "0.0.4", path = "../tuig-iosys" } tuig-pm = { version = "0.0.4", path = "../tuig-pm" } -tuig-ui = { version = "0.1.0", path = "../tuig-ui" } +tuig-ui = { version = "0.0.4", path = "../tuig-ui" } crossbeam = { version = "0.8.2", optional = true } rayon = { version = "1.7.0", optional = true }