File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ default = ["std"]
22
22
std = [" libc" ]
23
23
box = [] # enable use of Box on not(std), requires alloc crate and feature
24
24
vec = [] # enable use of Vec on not(std), requires collections crate and feature
25
- rdrand = []
25
+ rdrand = [] # with not(std), requires core_io
26
26
27
27
[dev-dependencies ]
28
28
log = " 0.3.0"
Original file line number Diff line number Diff line change 253
253
#[ cfg( all( feature="box" , not( feature="std" ) ) ) ] extern crate alloc;
254
254
#[ cfg( all( feature="vec" , not( feature="std" ) ) ) ] extern crate collections;
255
255
256
+ #[ cfg( all( not( feature="std" ) , feature="rdrand" , not( feature="core_io" ) ) ) ]
257
+ use using:: rdrand:: feature:: without:: std:: feature:: requires:: core_io:: feature;
258
+
256
259
#[ cfg( all( feature="std" , not( feature="rdrand" ) ) ) ] use core:: cell:: RefCell ;
257
260
use core:: marker;
258
261
use core:: mem;
You can’t perform that action at this time.
0 commit comments