Skip to content

Commit

Permalink
Merge pull request #226 from rustwasm/and-then-there-was-one-feature-…
Browse files Browse the repository at this point in the history
…flag

And then there was one feature flag
  • Loading branch information
ashleygwilliams authored Jul 25, 2018
2 parents 05e4743 + ef82d66 commit d68cb3b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ check out our [contribution policy].
3. Add this to the top of your `src/lib.rs`:

```rust
#![feature(use_extern_macros, wasm_import_module)]
#![feature(use_extern_macros)]

extern crate wasm_bindgen;

Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/bad-cargo-toml/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(use_extern_macros, wasm_import_module)]
#![feature(use_extern_macros)]

extern crate wasm_bindgen;

Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/js-hello-world/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(use_extern_macros, wasm_import_module)]
#![feature(use_extern_macros)]

extern crate wasm_bindgen;

Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/no-compile/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(use_extern_macros, wasm_import_module)]
#![feature(use_extern_macros)]

extern crate wasm_bindgen;

Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/no-readme/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(use_extern_macros, wasm_import_module)]
#![feature(use_extern_macros)]

extern crate wasm_bindgen;

Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/scopes/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(use_extern_macros, wasm_import_module)]
#![feature(use_extern_macros)]

extern crate wasm_bindgen;

Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/serde-feature/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(proc_macro, wasm_import_module, wasm_custom_section)]
#![feature(use_extern_macros)]

extern crate wasm_bindgen;

Expand Down

0 comments on commit d68cb3b

Please # to comment.