Only use 'extern crate stdweb' on web targets (#1291)

The 'extern crate' declaration shouldn't be there even if the stdweb feature is on, unless the crate is being compiled for web.
This commit is contained in:
Ryan G 2019-11-27 00:38:18 -05:00 committed by GitHub
parent aec5a9fa09
commit 3d28283a81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,7 +127,7 @@ extern crate bitflags;
#[cfg(any(target_os = "macos", target_os = "ios"))]
#[macro_use]
extern crate objc;
#[cfg(feature = "std_web")]
#[cfg(all(target_arch = "wasm32", feature = "std_web"))]
extern crate std_web as stdweb;
pub mod dpi;