1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A crate for generating bindings with `cargo-component`.

#![deny(missing_docs)]

// Export the `generate` macro.
pub use cargo_component_macro::generate;

// Re-export `wit_bindgen::rt` module for the generated code to use.
#[doc(hidden)]
pub use wit_bindgen::rt;

// Re-export `wit_bindgen::bitflags` module for the generated code to use.
#[doc(hidden)]
pub use wit_bindgen::bitflags;