xref: /libCEED/rust/libceed-sys/src/lib.rs (revision 2eb0be0b68ebb7cb25cc038250732c3239325ad2)
1 // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
2 // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3 //
4 // SPDX-License-Identifier: BSD-2-Clause
5 //
6 // This file is part of CEED:  http://github.com/ceed
7 
8 #![doc = include_str!("../README.md")]
9 
10 /**
11 Bindings generated from libCEED's C headers using bindgen.
12 
13 See `build.rs` to customize the process and refer to the [libCEED API
14 docs](https://libceed.org/en/latest/api/) for usage.
15 */
16 pub mod bind_ceed {
17     #![allow(non_upper_case_globals)]
18     #![allow(non_camel_case_types)]
19     #![allow(dead_code)]
20     include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
21 }
22