wamr_sys/lib.rs
1/*
2 * Copyright (C) 2023 Liquid Reply GmbH. All rights reserved.
3 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4 */
5
6// Suppress the flurry of warnings caused by using "C" naming conventions
7#![allow(non_upper_case_globals)]
8#![allow(non_camel_case_types)]
9#![allow(non_snake_case)]
10#![cfg_attr(not(feature = "std"), no_std)]
11
12// This matches bindgen::Builder output
13include!(concat!(env!("OUT_DIR"), "/bindings.rs"));