Skip to content

Commit fa62c66

Browse files
author
Jethro Beekman
committed
Add warning about core_io
1 parent d386b5d commit fa62c66

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ default = ["libc"]
2222
no_std = []
2323
box = [] # enable use of Box on no_std, requires alloc crate and feature
2424
vec = [] # enable use of Vec on no_std, requires collections crate and feature
25-
rdrand = []
25+
rdrand = [] # with no_std, requires core_io
2626

2727
[dev-dependencies]
2828
log = "0.3.0"

src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,9 @@
253253
#[cfg(feature="box")] extern crate alloc;
254254
#[cfg(feature="vec")] extern crate collections;
255255

256+
#[cfg(all(feature="no_std",feature="rdrand",not(feature="core_io")))]
257+
use using::rdrand::feature::with::no_std::feature::requires::core_io::feature;
258+
256259
#[cfg(all(not(feature="no_std"),not(feature="rdrand")))] use core::cell::RefCell;
257260
use core::marker;
258261
use core::mem;

0 commit comments

Comments
 (0)