mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 13:20:42 +00:00
- Expanded repository structure by introducing methods for fetching legacy catalogs, catalog file paths, and repository info. - Added new REST API v1 endpoints for catalog, manifest, file, and publisher handling. - Implemented `publisher` handler module with `get_publisher_v0` and `get_publisher_v1` methods to retrieve publisher details in pkg5 format. - Updated `integration_tests` to validate new endpoints and ensure compatibility with legacy and modern catalog/manifest handling. - Removed unused dependency `walkdir` and refactored test cases for clarity and efficiency.
23 lines
469 B
TOML
23 lines
469 B
TOML
[workspace]
|
|
# Order is important as this is the order the crates will be released.
|
|
members = [
|
|
"libips",
|
|
"pkg6depotd",
|
|
"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>"]
|