aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove `once_cell` dependency and replace with `OnceLock`魏曹先生12 days20-119/+58
|
* Add ClearCommand dispatcher and clear screen handler for exmaple-repl魏曹先生13 days1-0/+15
|
* Add `empty_result!` macro and `REPL` resource, improve examples魏曹先生14 days13-20/+510
|
* Conditionally disable panic unwind support for async feature魏曹先生14 days4-50/+63
|
* 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-1810-56/+420
|
* 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
|
* Update example version to 0.1.9魏曹先生2026-05-188-56/+24
|
* Bump version to 0.1.9魏曹先生2026-05-1810-47/+36
|
* Add contribution guidelines魏曹先生2026-05-181-0/+92
|
* Copy README to mingling directory on doc refresh魏曹先生2026-05-181-0/+11
|
* Switch mingling_core and mingling_macros to use published crate versions0.1.8Weicao-CatilGrass2026-05-1811-5/+68
|
* Add documentation comments to chain and error enumsWeicao-CatilGrass2026-05-183-0/+35
|
* Add no-return-value mode for `#[chain]` macroWeicao-CatilGrass2026-05-174-40/+132
|
* Add repr(u8) to bool and NextProcess enumsWeicao-CatilGrass2026-05-172-0/+3
|
* Rename `NextProcess` to `Next` across the codebaseWeicao-CatilGrass2026-05-1726-106/+122
|
* Refactor chain_attr and Suppress clippy::too_many_argumentsWeicao-CatilGrass2026-05-171-185/+287
|
* Remove module-level doc commentsWeicao-CatilGrass2026-05-173-25/+0
|
* Update architecture diagram and increase image width to 100%Weicao-CatilGrass2026-05-175-139/+204
|
* Update README links to use absolute URLs for docs.rsWeicao-CatilGrass2026-05-171-7/+7
|
* Add README files for mingling_core and mingling_macros cratesWeicao-CatilGrass2026-05-172-0/+32
|
* Add pixel icon assets for core libWeicao-CatilGrass2026-05-172-0/+0
|
* Restructure roadmap in README files into milestone groupsWeicao-CatilGrass2026-05-172-22/+28
|
* Update roadmap with completed and reorganized milestonesWeicao-CatilGrass2026-05-171-3/+3
|
* Add support for Python scripts in run-toolsWeicao-CatilGrass2026-05-162-4/+15
|
* Add allow(dead_code) annotation to run_hook_exec_panic魏曹先生2026-05-161-0/+1
|
* Accept paths for program name parameters in macros魏曹先生2026-05-1611-113/+98
| | | | | | | | | | | All proc macros (`pack!`, `dispatcher!`, `#[chain]`, `#[program_setup]`, `#[dispatcher_clap]`, `#[derive(Groupped)]`) now parse program names as `syn::Path` instead of bare `Ident`, allowing use of paths like `crate::MyProgram` or `my_crate::MyProgram`. The default program name `ThisProgram` is no longer re-exported or required as an import — generated code references `crate::ThisProgram` directly.
* Use `default_program_path()` instead of `default_program_ident()`魏曹先生2026-05-167-70/+83
|
* Replace hardcoded `ThisProgram` ident with shared constant魏曹先生2026-05-167-21/+42
|
* Validate single-segment types in attribute macros魏曹先生2026-05-165-2/+71
|
* Update example docs to use prelude and add resource injection example魏曹先生2026-05-161-20/+82
|
* Add doc comment for ExitCode struct usage魏曹先生2026-05-161-0/+7
|
* Document resource injection support in chain macro魏曹先生2026-05-161-4/+105
|
* Require owned type for first parameter and reference for resources魏曹先生2026-05-161-2/+13
|
* Simplify example imports to use prelude and add resources example魏曹先生2026-05-1612-24/+182
| | | | | | | | | Add a new example demonstrating global resource injection in chain functions, and update all existing examples to import from `mingling::prelude` instead of individual macro paths. Also add `example-resources` to the workspace exclude list.
* Add mutable resource injection to `#[chain]` macro魏曹先生2026-05-163-28/+115
|
* Fix typo in CHANGELOG macro names魏曹先生2026-05-161-1/+1
|
* Remove unused `dirs` dependency from mingling_core魏曹先生2026-05-162-4/+1
|
* Refactor general_renderer into granular format-specific features魏曹先生2026-05-1612-96/+123
|
* Remove thiserror dependency and implement error types manually魏曹先生2026-05-1513-173/+85
|
* Replace derive-macro Display impl with manual formatting魏曹先生2026-05-151-1/+12
|
* Add option to silence panic messages in stdout settings魏曹先生2026-05-153-0/+25
|
* Inline `strip_all_flags` and simplify `ShellContext` methods魏曹先生2026-05-154-28/+21
| | | | | | | | 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 workspace Cargo.toml and centralize crate metadata魏曹先生2026-05-159-1132/+114
|
* Add panic catch for program execution魏曹先生2026-05-157-24/+97
|
* 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-152-2/+26
|
* Add prelude module with common macro and trait re-exports魏曹先生2026-05-151-0/+37
|
* Add scripts for building documentation and update docs魏曹先生2026-05-134-49/+60
|