wasm-bindgen 0.2.101

Easy support for interacting between JS and Rust.
Documentation
1
2
3
4
5
6
7
8
// Mostly no-op `build.rs` so that `[package] links = ...` works in `Cargo.toml`.
fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    #[cfg(feature = "xxx_debug_only_print_generated_code")]
    {
        println!("cargo:warning=The `xxx_debug_only_print_generated_code` internal feature is deprecated and will be removed in the next major version.");
    }
}