mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 13:20:42 +00:00
- Centralize package metadata in workspace for consistency. - Upgrade `pkg6dev` and `pkg6repo` to version `0.5.1`, aligning with new workspace configuration. - Introduce `EnvFilter` for dynamic logging configuration, defaulting to debug level. - Add `LoggingEnvError` variant to `Pkg6DevError` with structured diagnostics for improved error handling.
23 lines
No EOL
472 B
TOML
23 lines
No EOL
472 B
TOML
[workspace]
|
|
# Order is important as this is the order the crates will be released.
|
|
members = [
|
|
"libips",
|
|
"pkg6depotd",
|
|
"pkg6dev",
|
|
"pkg6repo",
|
|
"userland",
|
|
"specfile",
|
|
"ports",
|
|
"crates/*",
|
|
"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>"] |