code2prompt_core 3.2.0

A command-line (CLI) tool to generate an LLM prompt from codebases of any size, fast.
Documentation
1
2
3
4
5
6
7
8
fn main() {
    // Check if we're compiling for macOS
    if cfg!(target_os = "macos") {
        // Add the necessary flags for PyO3 on macOS
        println!("cargo:rustc-link-arg=-undefined");
        println!("cargo:rustc-link-arg=dynamic_lookup");
    }
}