File tree Expand file tree Collapse file tree 4 files changed +15
-9
lines changed Expand file tree Collapse file tree 4 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,15 @@ path = "../library/alloc/src/lib.rs"
1515default = [" miri-test-libstd" ]
1616miri-test-libstd = []
1717
18- [dev-dependencies ]
19- rand = " 0.7"
20- rand_xorshift = " 0.2"
21- # This lets tests access the `core` and `alloc` crates.
18+ [dependencies ]
19+ # This lets the crate access the `core` and `alloc` crates.
2220core = { path = " ../fake/core" }
2321alloc = { path = " ../fake/alloc" }
2422
23+ [dev-dependencies ]
24+ rand = { version = " 0.8.5" , default-features = false , features = [" alloc" ] }
25+ rand_xorshift = " 0.3.0"
26+
2527[[test ]]
2628name = " collectionstests"
2729path = " ../library/alloc/tests/lib.rs"
Original file line number Diff line number Diff line change @@ -22,7 +22,10 @@ miri-test-libstd = []
2222name = " coretests"
2323path = " ../library/core/tests/lib.rs"
2424
25- [dev-dependencies ]
26- rand = " 0.7"
27- # This lets tests access the `core` crate.
25+ [dependencies ]
26+ # This lets the crate access the `core` crate.
2827core = { path = " ../fake/core" }
28+
29+ [dev-dependencies ]
30+ rand = { version = " 0.8.5" , default-features = false }
31+ rand_xorshift = { version = " 0.3.0" , default-features = false }
Original file line number Diff line number Diff line change 1- nightly-2022-12-25
1+ nightly-2023-01-09
Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ std_detect = { path = "../fake/std_detect" }
2626rustc-demangle = { path = " ../fake/rustc-demangle" }
2727
2828[dev-dependencies ]
29- rand = " 0.7"
29+ rand = { version = " 0.8.5" , default-features = false , features = [" alloc" ] }
30+ rand_xorshift = " 0.3.0"
3031
3132[features ]
3233# Empty this crate
You can’t perform that action at this time.
0 commit comments