fizzyx-sys 0.1.1

Low-level FFI bindings to the Fizzy WebAssembly interpreter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Low-level FFI bindings to the [Fizzy] WebAssembly interpreter.
//!
//! This crate exposes the raw, `unsafe` C API declared in `fizzy/fizzy.h`,
//! generated with [bindgen]. For a safe, ergonomic Rust API prefer the
//! [`fizzyx`] crate, which is built on top of these bindings.
//!
//! [Fizzy]: https://github.com/wasmx/fizzy
//! [bindgen]: https://github.com/rust-lang/rust-bindgen
//! [`fizzyx`]: https://docs.rs/fizzyx
#![no_std]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(dead_code)]
#![allow(clippy::all)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));