1 // Copyright (c) 2017-2024, 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 #![allow(clippy::too_long_first_doc_paragraph)] 21 #![allow(non_snake_case)] 22 include!(concat!(env!("OUT_DIR"), "/bindings.rs")); 23 } 24