mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-01 16:42:16 +00:00
14 lines
204 B
Rust
14 lines
204 B
Rust
#![recursion_limit = "256"]
|
|
|
|
extern crate proc_macro2;
|
|
#[macro_use]
|
|
extern crate quote;
|
|
#[macro_use]
|
|
extern crate syn;
|
|
|
|
extern crate wasm_bindgen_shared as shared;
|
|
|
|
pub mod ast;
|
|
mod codegen;
|
|
mod literal;
|