mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 21:30:41 +00:00
- Implement unit tests to cover `Image` creation, metadata management, saving/loading, and error handling. - Add separate constructors for `Full` and `Partial` image types (`new_full`, `new_partial`). - Introduce robust path handling methods (`metadata_dir`, `image_json_path`) for consistent metadata structure. - Enhance error diagnostics with `InvalidPath` variant in `ImageError`. - Update `Cargo.toml` for test module inclusion.
23 lines
No EOL
468 B
TOML
23 lines
No EOL
468 B
TOML
[workspace]
|
|
# Order is important as this is the order the crates will be released.
|
|
members = [
|
|
"libips",
|
|
"pkg6depotd",
|
|
"pkg6dev",
|
|
"pkg6repo",
|
|
"userland",
|
|
"specfile",
|
|
"ports",
|
|
"pkg6",
|
|
"xtask",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.5.1"
|
|
edition = "2024"
|
|
license-file = "LICENSE"
|
|
repository = "https://github.com/OpenFlowLabs/ips"
|
|
readme = "README.md"
|
|
keywords = ["packaging", "illumos"]
|
|
authors = ["Till Wegmueller <toasterson@gmail.com>"] |