llman 0.0.78

A tool for managing LLM application rules(prompts) ...
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    // i18n! embeds translations at compile time but (as of rust-i18n 4.2) does
    // not register the locale files with Cargo's change detection, so editing
    // `locales/*.yml` alone left stale strings in rebuilds (observed as a false
    // regression in change fix-devx-tooling-traps). Declare them here so any
    // translation edit triggers a real rebuild. Root package owns its locales
    // copy (published .crates are self-contained — workspace members are
    // excluded, so cross-crate embed paths break in release artifacts).
    println!("cargo:rerun-if-changed=locales");
}