File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ libc = "0.2.60"
2626
2727[target .wasm32-unknown-unknown .dependencies ]
2828wasm-bindgen = { version = " 0.2.29" , optional = true }
29- stdweb = { version = " 0.4.9 " , optional = true }
29+ stdweb = { version = " 0.4.18 " , optional = true }
3030
3131[features ]
3232std = []
Original file line number Diff line number Diff line change @@ -230,8 +230,6 @@ cfg_if! {
230230 if #[ cfg( feature = "wasm-bindgen" ) ] {
231231 #[ path = "wasm32_bindgen.rs" ] mod imp;
232232 } else if #[ cfg( feature = "stdweb" ) ] {
233- // temp fix for stdweb
234- extern crate std;
235233 #[ path = "wasm32_stdweb.rs" ] mod imp;
236234 } else {
237235 #[ path = "dummy.rs" ] mod imp;
Original file line number Diff line number Diff line change 77// except according to those terms.
88
99//! Implementation for WASM via stdweb
10+ extern crate std;
11+
1012use core:: mem;
1113
1214use stdweb:: unstable:: TryInto ;
You can’t perform that action at this time.
0 commit comments