mirror of
https://github.com/G2-Games/lbee-utils.git
synced 2025-04-19 15:22:53 -05:00
Changed versions and clap info output
This commit is contained in:
parent
e1a6a80659
commit
4e0df5412d
3 changed files with 7 additions and 3 deletions
|
@ -14,7 +14,7 @@ name = "pakutil"
|
||||||
cz = { path = "../cz/", features = ["png"] }
|
cz = { path = "../cz/", features = ["png"] }
|
||||||
luca_pak = { path = "../luca_pak/" }
|
luca_pak = { path = "../luca_pak/" }
|
||||||
|
|
||||||
image = "0.25"
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
||||||
clap = { version = "4.5.9", features = ["derive"] }
|
clap = { version = "4.5.9", features = ["derive"] }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
use clap::{error::ErrorKind, Error, Parser, Subcommand};
|
use clap::{error::ErrorKind, Error, Parser, Subcommand};
|
||||||
use std::{fs, path::{Path, PathBuf}};
|
use std::{fs, path::{Path, PathBuf}};
|
||||||
|
|
||||||
|
/// Utility to maniuplate CZ image files from the LUCA System game engine by
|
||||||
|
/// Prototype Ltd.
|
||||||
#[derive(Parser)]
|
#[derive(Parser)]
|
||||||
#[command(name = "CZ Utils")]
|
#[command(name = "CZ Utility")]
|
||||||
#[command(version, about, long_about = None)]
|
#[command(version, about, long_about = None)]
|
||||||
struct Cli {
|
struct Cli {
|
||||||
#[command(subcommand)]
|
#[command(subcommand)]
|
||||||
|
|
|
@ -2,8 +2,10 @@ use std::{fs, path::PathBuf};
|
||||||
use clap::{error::{Error, ErrorKind}, Parser, Subcommand};
|
use clap::{error::{Error, ErrorKind}, Parser, Subcommand};
|
||||||
use luca_pak::Pak;
|
use luca_pak::Pak;
|
||||||
|
|
||||||
|
/// Utility to maniuplate PAK archive files from the LUCA System game engine by
|
||||||
|
/// Prototype Ltd.
|
||||||
#[derive(Parser)]
|
#[derive(Parser)]
|
||||||
#[command(name = "CZ Utils")]
|
#[command(name = "PAK Utility")]
|
||||||
#[command(version, about, long_about = None)]
|
#[command(version, about, long_about = None)]
|
||||||
struct Cli {
|
struct Cli {
|
||||||
#[arg(value_name = "PAK FILE")]
|
#[arg(value_name = "PAK FILE")]
|
||||||
|
|
Loading…
Reference in a new issue