mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 13:20:42 +00:00
- Added `pkgtree` with functionalities to analyze dependency trees and detect cycles in IPS package images. - Implemented CLI options for filtering by publisher, package substring, and output format (Tree/JSON). - Integrated cycle detection and suggestions for resolving dependency cycles. - Added testing support for cycle detection. - Updated workspace dependencies and added `pkgtree` to the workspace configuration.
24 lines
No EOL
481 B
TOML
24 lines
No EOL
481 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",
|
|
"pkgtree",
|
|
"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>"] |