aboutsummaryrefslogtreecommitdiff
path: root/mingling_pathf/src/config.rs
Commit message (Collapse)AuthorAgeFilesLines
* feat(pathf): enforce pedantic lints and update API ergonomics魏曹先生18 hours1-1/+2
| | | | | | | | | | - Add `#[must_use]` to public constructors and getters - Change `init_with_config` to accept `&PathfinderConfig` instead of owned value - Refactor `map_or_else` and `or_insert_with` for clippy compliance - Add `#![deny(clippy::pedantic)]` and `#![deny(clippy::nursery)]` - Document error cases in public API docs - Simplify duplicated dispatcher_clap analysis logic
* docs: add module-level documentation and improve doc comments魏曹先生2026-07-171-0/+6
|
* feat(pathf): add dispatch tree config and pass feature to analyzer魏曹先生2026-06-291-0/+19
Add `PathfinderConfig` struct to control dispatch tree extraction, and wire `use_dispatch_tree` through `DispatcherPattern`, `init_with_config`, and `analyze_and_build_type_mapping_for`. Expose config and wrapper from `mingling_core` under the `pathf` feature.