llama_cpp_bindings_sys/lib.rs
1#![expect(
2 non_camel_case_types,
3 reason = "bindgen emits C struct and enum names verbatim and they don't follow Rust naming"
4)]
5#![expect(
6 unpredictable_function_pointer_comparisons,
7 reason = "bindgen-generated FFI function pointers are opaque and the lint cannot reason about them"
8)]
9
10include!(concat!(env!("OUT_DIR"), "/bindings.rs"));