mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-12 20:41:24 +00:00
Fix compile on latest nightly (#489)
This commit is contained in:
@ -39,7 +39,7 @@ wasm-bindgen = "0.2"
|
||||
Next up our actual code! We'll write this in `src/lib.rs`:
|
||||
|
||||
```rust,ignore
|
||||
#![feature(proc_macro, wasm_custom_section, wasm_import_module)]
|
||||
#![feature(use_extern_macros, wasm_custom_section, wasm_import_module)]
|
||||
|
||||
extern crate wasm_bindgen;
|
||||
use wasm_bindgen::prelude::*;
|
||||
|
@ -5,7 +5,7 @@ can also [explore this code online](https://webassembly.studio/?f=t61j18noqz):
|
||||
|
||||
```rust,ignore
|
||||
// src/lib.rs
|
||||
#![feature(proc_macro, wasm_custom_section, wasm_import_module)]
|
||||
#![feature(use_extern_macros, wasm_custom_section, wasm_import_module)]
|
||||
|
||||
extern crate wasm_bindgen;
|
||||
|
||||
|
Reference in New Issue
Block a user