aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli/src/pkg_mgr/cmd_pkg_disable.rs
Commit message (Collapse)AuthorAgeFilesLines
* feat(macros)!: change completion context parameter to owned type魏曹先生2 days1-1/+1
| | | | | | BREAKING CHANGE: `#[completion]` functions must now take `ShellContext` by value instead of `&ShellContext`. Reference parameters are reserved for resource injection.
* refactor!: replace pack! macros with derive-based pipeline types魏曹先生3 days1-12/+14
| | | | | | | | | Remove the `pack!`, `pack_err!`, `pack_structural!`, and `pack_err_structural!` macros, replacing all pipeline type definitions with `#[derive(Grouped)]` and `#[derive(Grouped, Wrap)]` attributes. This changes the generated struct shape from named-field structs with an `inner` field to tuple structs accessed via `.0`, and removes the auto-generated `name` and `info` fields from error types.
* refactor: migrate renderers to RenderResult and stdout macros魏曹先生11 days1-12/+14
| | | | | Replace buffer-based renderers with explicit RenderResult returns and use cargo-styled output macros for consistency.
* feat: implement pkg-enable and pkg-disable commands魏曹先生11 days1-0/+108
Add package enable/disable functionality with version matching for pkg-enable, and fix help text to reflect implemented commands.