Remove use_extern_macros features

This has now been stabilized!
This commit is contained in:
Alex Crichton
2018-08-19 14:31:35 -07:00
parent 9c6225fd80
commit d4297ad2d3
57 changed files with 114 additions and 198 deletions

View File

@ -39,8 +39,6 @@ wasm-bindgen = "0.2"
Next up our actual code! We'll write this in `src/lib.rs`:
```rust,ignore
#![feature(use_extern_macros)]
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;

View File

@ -5,8 +5,6 @@ can also [explore this code online](https://webassembly.studio/?f=t61j18noqz):
```rust,ignore
// src/lib.rs
#![feature(use_extern_macros)]
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;