llama-cpp-bindings-sys 0.8.0

Low level bindings to llama.cpp
Documentation
1
2
3
4
5
6
7
8
9
10
#![expect(
    non_camel_case_types,
    reason = "bindgen emits C struct and enum names verbatim and they don't follow Rust naming"
)]
#![expect(
    unpredictable_function_pointer_comparisons,
    reason = "bindgen-generated FFI function pointers are opaque and the lint cannot reason about them"
)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));