From 4e0df5412d469531f6a760bdfab4d309d949d3b6 Mon Sep 17 00:00:00 2001 From: G2-Games Date: Thu, 11 Jul 2024 23:39:14 -0500 Subject: [PATCH] Changed versions and clap info output --- utils/Cargo.toml | 2 +- utils/src/bin/czutil.rs | 4 +++- utils/src/bin/pakutil.rs | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 3a02613..25c3aaf 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -14,7 +14,7 @@ name = "pakutil" cz = { path = "../cz/", features = ["png"] } luca_pak = { path = "../luca_pak/" } -image = "0.25" +image = { version = "0.25", default-features = false, features = ["png"] } clap = { version = "4.5.9", features = ["derive"] } [lints] diff --git a/utils/src/bin/czutil.rs b/utils/src/bin/czutil.rs index 7f761ce..5733474 100644 --- a/utils/src/bin/czutil.rs +++ b/utils/src/bin/czutil.rs @@ -1,8 +1,10 @@ use clap::{error::ErrorKind, Error, Parser, Subcommand}; use std::{fs, path::{Path, PathBuf}}; +/// Utility to maniuplate CZ image files from the LUCA System game engine by +/// Prototype Ltd. #[derive(Parser)] -#[command(name = "CZ Utils")] +#[command(name = "CZ Utility")] #[command(version, about, long_about = None)] struct Cli { #[command(subcommand)] diff --git a/utils/src/bin/pakutil.rs b/utils/src/bin/pakutil.rs index fd966b2..7e73770 100644 --- a/utils/src/bin/pakutil.rs +++ b/utils/src/bin/pakutil.rs @@ -2,8 +2,10 @@ use std::{fs, path::PathBuf}; use clap::{error::{Error, ErrorKind}, Parser, Subcommand}; use luca_pak::Pak; +/// Utility to maniuplate PAK archive files from the LUCA System game engine by +/// Prototype Ltd. #[derive(Parser)] -#[command(name = "CZ Utils")] +#[command(name = "PAK Utility")] #[command(version, about, long_about = None)] struct Cli { #[arg(value_name = "PAK FILE")]