File tree 3 files changed +3
-3
lines changed
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"
26
26
27
27
[target .wasm32-unknown-unknown .dependencies ]
28
28
wasm-bindgen = { version = " 0.2.29" , optional = true }
29
- stdweb = { version = " 0.4.9 " , optional = true }
29
+ stdweb = { version = " 0.4.18 " , optional = true }
30
30
31
31
[features ]
32
32
std = []
Original file line number Diff line number Diff line change @@ -230,8 +230,6 @@ cfg_if! {
230
230
if #[ cfg( feature = "wasm-bindgen" ) ] {
231
231
#[ path = "wasm32_bindgen.rs" ] mod imp;
232
232
} else if #[ cfg( feature = "stdweb" ) ] {
233
- // temp fix for stdweb
234
- extern crate std;
235
233
#[ path = "wasm32_stdweb.rs" ] mod imp;
236
234
} else {
237
235
#[ path = "dummy.rs" ] mod imp;
Original file line number Diff line number Diff line change 7
7
// except according to those terms.
8
8
9
9
//! Implementation for WASM via stdweb
10
+ extern crate std;
11
+
10
12
use core:: mem;
11
13
12
14
use stdweb:: unstable:: TryInto ;
You can’t perform that action at this time.
0 commit comments