1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-02 10:21:07 +00:00

28 lines
502 B
Rust
Raw Normal View History

#![cfg(target_arch = "wasm32")]
#![feature(use_extern_macros)]
extern crate wasm_bindgen_test;
extern crate wasm_bindgen;
#[cfg(feature = "serde-serialize")]
#[macro_use]
extern crate serde_derive;
pub mod api;
pub mod char;
pub mod classes;
pub mod closures;
pub mod duplicates;
pub mod enums;
2018-08-05 09:52:11 -07:00
pub mod imports;
2018-08-05 09:12:23 -07:00
pub mod import_class;
pub mod js_objects;
pub mod math;
2018-08-02 22:23:11 -07:00
pub mod option;
2018-08-03 20:47:03 +03:00
pub mod optional_primitives;
pub mod simple;
pub mod slice;
pub mod structural;
pub mod u64;
pub mod validate_prt;