aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/build
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: remove dynamic dispatcher registration API魏曹先生2 days1-9/+2
| | | | | | | Dispatchers are now always registered at compile time, removing the `with_dispatcher` / `with_dispatchers` methods and the `PathfinderConfig` API. The `dispatch_tree` feature now only controls the matching strategy (trie vs linear list).
* docs: enable running doctests in comp and pathf build modules魏曹先生5 days2-16/+89
|
* chore: add "Doc Not Optimize" comments to source files魏曹先生5 days2-0/+2
| | | | | Mark all source files with a comment indicating they are not optimized for documentation purposes.
* refactor: simplify macro parsing code and fix clippy warnings魏曹先生9 days1-4/+4
|
* feat(build): document build module and refine feature exports魏曹先生2026-08-031-0/+2
| | | | | Add module-level docs for the build module via include_str and restrict public re-exports to explicit items instead of glob imports.
* feat(core): rename `builds` feature to `build`魏曹先生2026-07-232-0/+211
Replace the `builds` feature with `build` across the crate, keeping a backward-compatible alias for the old name. Update all internal visibility from `#[doc(hidden)] pub mod` to `pub(crate) mod` and reorganize the `__private` module into a dedicated `private.rs`.