Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove stabilized wasm feature attributes #122

Merged
merged 1 commit into from
Aug 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove stabilized wasm feature attributes
According to rustwasm/book#52
wasm_custom_section and wasm_import_module are stabilized, and not
supported anymore by latest nightly rustc
  • Loading branch information
userzimmermann committed Aug 14, 2018
commit 3d82c3ec4eb9ea2225593a37cc923299b57b9ec6
2 changes: 1 addition & 1 deletion opt/opt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#![deny(missing_debug_implementations)]
#![cfg_attr(
feature = "wasm",
feature(use_extern_macros, wasm_custom_section, wasm_import_module)
feature(use_extern_macros)
)]

#[macro_use]
Expand Down
2 changes: 1 addition & 1 deletion wasm-api/wasm-api.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![cfg(target_arch = "wasm32")]
#![cfg(feature = "emit_json")]
#![feature(use_extern_macros, wasm_custom_section, wasm_import_module)]
#![feature(use_extern_macros)]

extern crate wasm_bindgen;

Expand Down