xref: /libCEED/rust/libceed-sys/src/lib.rs (revision 3d8e882215d238700cdceb37404f76ca7fa24eaa)
1*3d8e8822SJeremy L Thompson // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
2*3d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3f53477deSjeremylt //
4*3d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
5f53477deSjeremylt //
6*3d8e8822SJeremy 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)]
209df49d7eSJed Brown     include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
219df49d7eSJed Brown }
22