argyph-cli 1.0.1

Local-first MCP server giving AI coding agents fast, structured, and semantic context over any codebase.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::process::Command;

fn main() {
    let rustc = option_env!("RUSTC").unwrap_or("rustc");
    if let Ok(output) = Command::new(rustc).arg("--version").output() {
        let version = String::from_utf8_lossy(&output.stdout);
        println!("cargo:rustc-env=RUSTC_VERSION={}", version.trim());
    } else {
        println!("cargo:rustc-env=RUSTC_VERSION=unknown");
    }
}