xref: /libCEED/rust/libceed-sys/src/lib.rs (revision 13964f0727a62e5421e6d3b433e838b96a9ce891)
1f53477deSjeremylt // Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at
2f53477deSjeremylt // the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights
3f53477deSjeremylt // reserved. See files LICENSE and NOTICE for details.
4f53477deSjeremylt //
5f53477deSjeremylt // This file is part of CEED, a collection of benchmarks, miniapps, software
6f53477deSjeremylt // libraries and APIs for efficient high-order finite element and spectral
7f53477deSjeremylt // element discretizations for exascale applications. For more information and
8f53477deSjeremylt // source code availability see http://github.com/ceed.
9f53477deSjeremylt //
10f53477deSjeremylt // The CEED research is supported by the Exascale Computing Project 17-SC-20-SC,
11f53477deSjeremylt // a collaborative effort of two U.S. Department of Energy organizations (Office
12f53477deSjeremylt // of Science and the National Nuclear Security Administration) responsible for
13f53477deSjeremylt // the planning and preparation of a capable exascale ecosystem, including
14f53477deSjeremylt // software, applications, hardware, advanced system engineering and early
15f53477deSjeremylt // testbed platforms, in support of the nation's exascale computing imperative
16f53477deSjeremylt 
1709752d44SJed Brown #![doc = include_str!("../README.md")]
188a059566SJed Brown 
1909752d44SJed Brown /**
2009752d44SJed Brown Bindings generated from libCEED's C headers using bindgen.
218a059566SJed Brown 
2209752d44SJed Brown See `build.rs` to customize the process and refer to the [libCEED API
23*13964f07SJed Brown docs](https://libceed.org/en/latest/api/) for usage.
248a059566SJed Brown */
259df49d7eSJed Brown pub mod bind_ceed {
269df49d7eSJed Brown     #![allow(non_upper_case_globals)]
279df49d7eSJed Brown     #![allow(non_camel_case_types)]
289df49d7eSJed Brown     #![allow(dead_code)]
299df49d7eSJed Brown     include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
309df49d7eSJed Brown }
31