wasm_opt_sys/
lib.rs

1//! Native build of `wasm-opt`.
2//!
3//! This crate builds the C++ code for `wasm-opt` but
4//! does not provide any Rust bindings.
5//!
6//! Rust bindings can be found in [`wasm-opt-cxx-sys`],
7//! but most users will probably want the high level APIs in the [`wasm-opt`] crate.
8//!
9//! [`wasm-opt-cxx-sys`]: https://docs.rs/wasm-opt-cxx-sys
10//! [`wasm-opt`]: https://docs.rs/wasm-opt
11
12/// Just here so that cxx-build becomes willing to manage the set of include
13/// directories from this crate for downstream crates to include from. Perhaps
14/// cxx-build should stop making it necessary to put this.
15#[cxx::bridge]
16mod dummy {}