Remove usage of #[wasm_custom_section] (#509)

This has been stabilized on nightly as `#[link_section]`, so no need for an
unstable attribute any more. Yay!
This commit is contained in:
Alex Crichton
2018-07-19 08:57:18 -05:00
committed by GitHub
parent 9b6804a01b
commit a949482e3a
74 changed files with 383 additions and 382 deletions

View File

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