aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src
Commit message (Collapse)AuthorAgeFilesLines
* Support custom return types in `#[renderer]` macroWeicao-CatilGrass11 days1-0/+12
|
* Rename injected renderer parameter from `r` to `__renderer_inner_result`Weicao-CatilGrass11 days1-2/+2
|
* Update `modify_res` to return `Return` and rename internal method魏曹先生12 days1-4/+7
|
* Change `repl_post_readline` hook to accept mutable line reference魏曹先生12 days2-8/+8
|
* Refactor REPL hooks into modular setups and add new hook types魏曹先生12 days2-13/+156
|
* Add `empty_result!` macro and `REPL` resource, improve examples魏曹先生14 days3-3/+29
|
* Conditionally disable panic unwind support for async feature魏曹先生14 days3-45/+62
|
* Add REPL pre/post readline hooks and suppress dead code warnings魏曹先生2026-05-182-26/+78
|
* Implement REPL execution with hooks and argument splitting魏曹先生2026-05-188-54/+413
|
* Refactor program module into submodules魏曹先生2026-05-185-323/+361
|
* Move hook execution into the async and sync run methods魏曹先生2026-05-182-2/+6
|
* Add documentation comments to chain and error enumsWeicao-CatilGrass2026-05-183-0/+35
|
* Add no-return-value mode for `#[chain]` macroWeicao-CatilGrass2026-05-171-0/+4
|
* Add repr(u8) to bool and NextProcess enumsWeicao-CatilGrass2026-05-171-0/+1
|
* Rename `NextProcess` to `Next` across the codebaseWeicao-CatilGrass2026-05-173-17/+17
|
* Add allow(dead_code) annotation to run_hook_exec_panic魏曹先生2026-05-161-0/+1
|
* Add mutable resource injection to `#[chain]` macro魏曹先生2026-05-161-0/+34
|
* Refactor general_renderer into granular format-specific features魏曹先生2026-05-163-0/+33
|
* Remove thiserror dependency and implement error types manually魏曹先生2026-05-153-22/+79
|
* Replace derive-macro Display impl with manual formatting魏曹先生2026-05-151-1/+12
|
* Add option to silence panic messages in stdout settings魏曹先生2026-05-152-0/+24
|
* Inline `strip_all_flags` and simplify `ShellContext` methods魏曹先生2026-05-152-22/+19
| | | | | | | | Simplify `strip_all_flags` by using `Vec::retain` instead of reallocating. Update doc examples to use `ShellContext` methods directly instead of the now-removed `ShellContextHelper`. Rename `as_picker` to `to_picker` for consistency with Rust conventions. Mark doc tests as `ignore` and add necessary imports.
* Add panic catch for program execution魏曹先生2026-05-156-24/+95
|
* Rename `set_instance_and_run` to `exec_wrapper` and remove doc comments魏曹先生2026-05-151-6/+4
|
* Add `modify` method to `ResourceMarker` trait魏曹先生2026-05-151-2/+12
|
* Migrate exit code control to resource-based systemWeicao-CatilGrass2026-05-138-298/+10
|
* Remove installation module behind builds featureWeicao-CatilGrass2026-05-132-78/+0
|
* Add `builds` feature and install completion scriptsWeicao-CatilGrass2026-05-114-0/+103
|
* Capture exit codes from anonymous hook finishes魏曹先生2026-05-092-3/+5
|
* Remove unnecessary closure in exit code control setup魏曹先生2026-05-091-1/+1
|
* Add exit code control and hook lifecycle features魏曹先生2026-05-095-12/+75
|
* Add lifecycle hooks to program execution魏曹先生2026-05-099-30/+507
|
* Move `comp` module from `asset` to crate rootWeicao-CatilGrass2026-05-096-6/+7
|
* Replace explicit return with trailing expression魏曹先生2026-05-082-1/+2
| | | | Suppress clippy::ptr_arg lint in match_user_input
* Dispatch arguments using prefix tree with dispatch_tree feature魏曹先生2026-05-082-6/+44
|
* Add error type aliases to ProgramCollect trait魏曹先生2026-05-081-0/+2
|
* Log node strings in get_nodes for debug builds魏曹先生2026-05-071-1/+19
|
* Add compile-time dispatch tree generation for O(len) command routing魏曹先生2026-05-071-0/+1
|
* Add dispatch tree feature for fast argument matching魏曹先生2026-05-074-17/+55
|
* Add support for resource injection in `#[chain]` macro魏曹先生2026-05-071-0/+6
|
* Apply clippy suggestions in chain related filesWeicao-CatilGrass2026-05-041-11/+11
|
* Add missing articles and improve documentation魏曹先生2026-05-038-0/+55
|
* Add Display derive and testing utilities for Next enum魏曹先生2026-05-024-0/+110
|
* Restrict GlobalResources visibility to crate魏曹先生2026-05-021-1/+1
|
* Fix comment and constrain ProgramCollect generic bounds魏曹先生2026-04-292-2/+2
|
* Extract `build_comp_script` logic into `build_comp_script_to`魏曹先生2026-04-281-4/+23
|
* Add global resource system to Program魏曹先生2026-04-274-2/+129
|
* Remove `marker::NextProcess` and generate it via `gen_program!`Weicao-CatilGrass2026-04-273-10/+0
|
* Rename feature `clap_parser` to `clap`魏曹先生2026-04-261-3/+3
|
* Add clap_parser feature to mingling_core with help output behavior魏曹先生2026-04-261-0/+17
| | | | config