diff --git a/Cargo.toml b/Cargo.toml index 428782a..c2ad45d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,8 +2,8 @@ resolver = "2" members = [ "cz", - "experimental", - "luca_pak", + "pak_explorer", + "luca_pak", "utils", ] [workspace.package] diff --git a/cz/Cargo.toml b/cz/Cargo.toml index 0c58707..e432628 100644 --- a/cz/Cargo.toml +++ b/cz/Cargo.toml @@ -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" diff --git a/luca_pak/Cargo.toml b/luca_pak/Cargo.toml index d574009..fd1f3fd 100644 --- a/luca_pak/Cargo.toml +++ b/luca_pak/Cargo.toml @@ -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"] } diff --git a/experimental/Cargo.toml b/pak_explorer/Cargo.toml similarity index 76% rename from experimental/Cargo.toml rename to pak_explorer/Cargo.toml index bd0427c..4963df9 100644 --- a/experimental/Cargo.toml +++ b/pak_explorer/Cargo.toml @@ -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 diff --git a/experimental/src/main.rs b/pak_explorer/src/main.rs similarity index 100% rename from experimental/src/main.rs rename to pak_explorer/src/main.rs diff --git a/utils/Cargo.toml b/utils/Cargo.toml new file mode 100644 index 0000000..b657bb4 --- /dev/null +++ b/utils/Cargo.toml @@ -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 diff --git a/cz/src/bin/czutil.rs b/utils/src/bin/czutil.rs similarity index 100% rename from cz/src/bin/czutil.rs rename to utils/src/bin/czutil.rs diff --git a/luca_pak/src/main.rs b/utils/src/bin/pakutil.rs similarity index 100% rename from luca_pak/src/main.rs rename to utils/src/bin/pakutil.rs