libceed_sys/lib.rs
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/**
11Bindings generated from libCEED's C headers using bindgen.
12
13See `build.rs` to customize the process and refer to the [libCEED API
14docs](https://libceed.org/en/latest/api/) for usage.
15*/
16pub 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}