mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 13:20:42 +00:00
- Add methods to find and clean up obsoleted packages older than a specified TTL (`find_obsoleted_packages_older_than_ttl` and `cleanup_obsoleted_packages_older_than_ttl`) in `libips`. - Implement a new `CleanupObsoleted` command in `pkg6repo` to handle cleanup operations. - Update workspace `Cargo.toml` files with unified attributes for better consistency. - Adjust dependencies (`libips` version patterns, `thiserror` updates) and enhance metadata management for obsoleted packages. - Enhance repository operations by adding batch processing and robust logging during cleanup.
14 lines
350 B
TOML
14 lines
350 B
TOML
[package]
|
|
name = "pkg6"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license-file.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
keywords.workspace = true
|
|
|
|
[dependencies]
|
|
libips = { version = "*", path = "../../libips" }
|
|
diff-struct = "0.5.3"
|
|
serde = { version = "1.0.207", features = ["derive"] }
|