Skip to content

Commit 10c8a65

Browse files
committed
Add raw_entry and tests from libstd
Fixes #23
1 parent 341e550 commit 10c8a65

File tree

4 files changed

+2102
-174
lines changed

4 files changed

+2102
-174
lines changed

src/lib.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,18 @@
1818
allocator_api,
1919
ptr_offset_from,
2020
test,
21-
core_intrinsics
21+
core_intrinsics,
22+
dropck_eyepatch
2223
)
2324
)]
2425
#![warn(missing_docs)]
2526

27+
#[cfg(test)]
28+
#[macro_use]
29+
extern crate std;
30+
#[cfg(test)]
31+
extern crate rand;
32+
2633
#[cfg(feature = "nightly")]
2734
#[cfg_attr(test, macro_use)]
2835
extern crate alloc;

0 commit comments

Comments
 (0)