File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 126
126
#![ deny( missing_docs) ]
127
127
#![ deny( missing_debug_implementations) ]
128
128
#![ doc( test( attr( allow( unused_variables) , deny( warnings) ) ) ) ]
129
- // for stdweb
130
- #![ recursion_limit="128" ]
129
+
130
+ #![ cfg_attr ( feature = "stdweb" , recursion_limit="128" ) ]
131
131
132
132
pub extern crate rand_core;
133
133
#[ cfg( feature = "log" ) ]
Original file line number Diff line number Diff line change 58
58
#![ cfg_attr( not( feature="std" ) , no_std) ]
59
59
#![ cfg_attr( all( feature="alloc" , not( feature="std" ) ) , feature( alloc) ) ]
60
60
#![ cfg_attr( all( feature="simd_support" , feature="nightly" ) , feature( stdsimd) ) ]
61
- #![ cfg_attr( feature = "stdweb" , recursion_limit="128" ) ]
62
61
63
62
#[ cfg( feature = "std" ) ] extern crate core;
64
63
#[ cfg( all( feature = "alloc" , not( feature="std" ) ) ) ] #[ macro_use] extern crate alloc;
65
64
66
65
#[ cfg( feature="simd_support" ) ] extern crate packed_simd;
67
66
68
- #[ cfg( all( target_arch="wasm32" , not( target_os="emscripten" ) , feature="stdweb" ) ) ]
69
- #[ macro_use]
70
- extern crate stdweb;
71
-
72
67
#[ cfg( feature = "rand_os" ) ]
73
68
extern crate rand_os;
74
69
You can’t perform that action at this time.
0 commit comments