Renamed experimental to pak_explorer, moved CLI utils to utils

This commit is contained in:
G2-Games 2024-07-11 23:17:40 -05:00
parent 17a29fef8e
commit df3f3b9373
8 changed files with 32 additions and 20 deletions

View file

@ -2,8 +2,8 @@
resolver = "2" resolver = "2"
members = [ members = [
"cz", "cz",
"experimental", "pak_explorer",
"luca_pak", "luca_pak", "utils",
] ]
[workspace.package] [workspace.package]

View file

@ -3,19 +3,14 @@ name = "cz"
edition = "2021" edition = "2021"
version = "0.1.2" version = "0.1.2"
description=""" description="""
A encoder/decoder for CZ# image files used in the LUCA System Engine. An encoder/decoder for CZ# image files used in the LUCA System engine by
Prototype Ltd.
""" """
license = "MIT" license = "MIT"
authors.workspace = true authors.workspace = true
[features] [features]
png = ["dep:image"] png = ["dep:image"]
binary = ["dep:clap"]
[[bin]]
version = "0.1.2"
name = "czutil"
required-features = ["binary", "png"]
[dependencies] [dependencies]
byteorder = "1.5" byteorder = "1.5"

View file

@ -3,17 +3,12 @@ name = "luca_pak"
edition = "2021" edition = "2021"
version = "0.1.2" version = "0.1.2"
description = """ description = """
A crate for parsing and modifying PAK files from the LUCA System engine by An encoder/decoder for PAK archive files used in the LUCA System engine by
Prototype Ltd. Prototype Ltd.
""" """
license = "MIT" license = "MIT"
authors.workspace = true authors.workspace = true
[[bin]]
version = "0.1.2"
name = "pakutil"
path = "src/main.rs"
[dependencies] [dependencies]
byteorder = "1.5.0" byteorder = "1.5.0"
clap = { version = "4.5.8", features = ["derive"] } clap = { version = "4.5.8", features = ["derive"] }

View file

@ -1,10 +1,11 @@
[package] [package]
name = "experimental" name = "pak_explorer"
description = """
A package for experimentation, not for publishing
"""
version = "0.1.1"
edition = "2021" edition = "2021"
version = "0.1.1"
description = """
A simple GUI for exploring and making modifications to LUCA System PAK files.
"""
license = "AGPL-3.0"
authors.workspace = true authors.workspace = true
publish = false publish = false

21
utils/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "utils"
version = "0.2.0"
edition = "2021"
authors.workspace = true
[[bin]]
name = "czutil"
[[bin]]
name = "pakutil"
[dependencies]
cz = { path = "../cz/", features = ["png"] }
luca_pak = { path = "../luca_pak/" }
image = "0.25"
clap = { version = "4.5.9", features = ["derive"] }
[lints]
workspace = true