kodegen_daemon 0.1.0

KODEGEN.ᴀɪ: Memory-efficient, Blazing-Fast, MCP tools for code generation agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Build script for `kodegen_daemon`
//!
//! This build script handles cross-platform build tasks including macOS helper
//! app creation, code signing, and platform-specific optimizations.

// Include the build module
#[path = "src/build/mod.rs"]
mod build;

fn main() {
    build::main();
}