| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | refactor!: replace build.rs with compile-time macro build steps | 魏曹先生 | 32 hours | 1 | -1/+91 |
| | | | | | | | | | | | | | | BREAKING CHANGE: Replace the `build`/`builds` feature system with compile-time macro-driven generation. `gen_program!()` now automatically invokes `build_comp!()` and `build_pathf!()` when the `comp`/`pathf` features are enabled, eliminating the need for `build.rs` and `[build-dependencies]` blocks. This removes the `build` feature, the `mingling::build` module, and all related build-time API functions. Completion scripts are now written to `{target_directory}/mingling/` instead of `target/release/`. The `mingling_cli` uses `build_comp!("mling")` for its custom binary name. | ||||
| * | chore(release): bump version to 0.5.0 | 魏曹先生 | 2 days | 1 | -4/+4 |
| | | |||||
| * | chore: update package versions to 0.4.0 in lock files | 魏曹先生 | 10 days | 1 | -4/+4 |
| | | |||||
| * | feat: add entry metadata system with compile-time typed values | 魏曹先生 | 2026-08-04 | 1 | -0/+226 |
| Add `Metadata<B>` trait and `#[metadata(Entry)]` attribute macro to attach arbitrary, compile-time-typed metadata to entries. Implement `ProgramCollect::get_metadata<T>()` for runtime retrieval, backed by a global registry populated by `register_metadata!`. Extend `pathf` with `MetadataPattern` to resolve metadata types across modules at build time. Add two examples demonstrating metadata usage with and without pathf integration. | |||||
