mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-25 06:02:13 +00:00
* Re-enable WebGPU WebIDL as experimental * Add `web_sys_unstable_apis` attribute * Add test for unstable WebIDL * Include unstable WebIDL in docs.rs builds * Add docs and doc comment for unstable APIs * Add unstable API checks to CI
17 lines
295 B
Rust
17 lines
295 B
Rust
extern crate js_sys;
|
|
extern crate wasm_bindgen;
|
|
extern crate wasm_bindgen_test;
|
|
|
|
pub mod array;
|
|
pub mod array_buffer;
|
|
pub mod callbacks;
|
|
pub mod consts;
|
|
pub mod dictionary;
|
|
pub mod enums;
|
|
pub mod global;
|
|
pub mod namespace;
|
|
pub mod no_interface;
|
|
pub mod simple;
|
|
pub mod throws;
|
|
pub mod unstable;
|