xref: /libCEED/rust/libceed-sys/src/lib.rs (revision d4cc18453651bd0f94c1a2e078b2646a92dafdcc)
1*9ba83ac0SJeremy L Thompson // Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors.
23d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3f53477deSjeremylt //
43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
5f53477deSjeremylt //
63d8e8822SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
7f53477deSjeremylt 
809752d44SJed Brown #![doc = include_str!("../README.md")]
98a059566SJed Brown 
1009752d44SJed Brown /**
1109752d44SJed Brown Bindings generated from libCEED's C headers using bindgen.
128a059566SJed Brown 
1309752d44SJed Brown See `build.rs` to customize the process and refer to the [libCEED API
1413964f07SJed Brown docs](https://libceed.org/en/latest/api/) for usage.
158a059566SJed Brown */
169df49d7eSJed Brown pub mod bind_ceed {
179df49d7eSJed Brown     #![allow(non_upper_case_globals)]
189df49d7eSJed Brown     #![allow(non_camel_case_types)]
199df49d7eSJed Brown     #![allow(dead_code)]
2091216f76SJeremy L Thompson     #![allow(clippy::too_long_first_doc_paragraph)]
2125220598SJeremy L Thompson     #![allow(non_snake_case)]
229df49d7eSJed Brown     include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
239df49d7eSJed Brown }
24