graphrust-ffi 0.1.0

C/C++ FFI bindings for graphrust algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    // Build script for graphrust-ffi
    // 
    // In a real project, this would:
    // 1. Generate CXX bindings using cxx_build
    // 2. Generate C headers using cbindgen
    //
    // For now, we keep it simple to allow building the Rust library.
    // Users can generate FFI bindings by running cbindgen manually or enabling CXX features.

    println!("cargo:warning=GraphRust FFI library built. See README for FFI binding instructions.");
}