mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 21:30:41 +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.
19 lines
558 B
TOML
19 lines
558 B
TOML
[package]
|
|
name = "pkgtree"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license-file.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
keywords.workspace = true
|
|
authors.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.9", features = ["derive", "env"] }
|
|
miette = { version = "7.6.0", features = ["fancy"] }
|
|
thiserror = "1.0.50"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
libips = { path = "../libips" }
|