mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 21:30:41 +00:00
- Deleted `pkg6dev` crate, including all related files (`src`, `Cargo.toml`, `Cargo.lock`, and `README.md`). - Removed error handling, CLI logic, and publishing functionality from the project. - Migrated relevant high-level APIs to `libips`, ensuring consistency with existing modules. - Updated `libips` with a new `api` module to encapsulate `forge/pkgdev` integration logic. - Simplified repository structure to exclude now-unused components and dependencies.
23 lines
No EOL
468 B
TOML
23 lines
No EOL
468 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>"] |