mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-25 22:22:12 +00:00
16 lines
339 B
Rust
16 lines
339 B
Rust
#![recursion_limit = "256"]
|
|
#![cfg_attr(feature = "extra-traits", deny(missing_debug_implementations))]
|
|
#![doc(html_root_url = "https://docs.rs/wasm-bindgen-backend/0.2")]
|
|
|
|
pub use crate::codegen::TryToTokens;
|
|
pub use crate::error::Diagnostic;
|
|
|
|
#[macro_use]
|
|
mod error;
|
|
|
|
pub mod ast;
|
|
mod codegen;
|
|
pub mod defined;
|
|
mod encode;
|
|
pub mod util;
|