ips/Cargo.toml
Till Wegmueller f7f017f7b9
Add tests for Image functionality and refactor image handling logic
- 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.
2025-08-02 22:12:37 +02:00

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>"]