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"
members = [
"cz",
"experimental",
"luca_pak",
"pak_explorer",
"luca_pak", "utils",
]
[workspace.package]

View file

@ -3,19 +3,14 @@ name = "cz"
edition = "2021"
version = "0.1.2"
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"
authors.workspace = true
[features]
png = ["dep:image"]
binary = ["dep:clap"]
[[bin]]
version = "0.1.2"
name = "czutil"
required-features = ["binary", "png"]
[dependencies]
byteorder = "1.5"

View file

@ -3,17 +3,12 @@ name = "luca_pak"
edition = "2021"
version = "0.1.2"
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.
"""
license = "MIT"
authors.workspace = true
[[bin]]
version = "0.1.2"
name = "pakutil"
path = "src/main.rs"
[dependencies]
byteorder = "1.5.0"
clap = { version = "4.5.8", features = ["derive"] }

View file

@ -1,10 +1,11 @@
[package]
name = "experimental"
description = """
A package for experimentation, not for publishing
"""
version = "0.1.1"
name = "pak_explorer"
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
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