npcrs 0.1.15

Rust core for the NPC system — agent kernel, jinx executor, LLM client
Documentation
1
2
3
4
5
6
7
8
fn main() {
    let version = std::fs::read_to_string("VERSION")
        .unwrap_or_else(|_| "0.0.0".to_string())
        .trim()
        .to_string();
    println!("cargo:rustc-env=NPCRS_VERSION={}", version);
    println!("cargo:rerun-if-changed=VERSION");
}