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"
15
15
default = [" miri-test-libstd" ]
16
16
miri-test-libstd = []
17
17
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.
22
20
core = { path = " ../fake/core" }
23
21
alloc = { path = " ../fake/alloc" }
24
22
23
+ [dev-dependencies ]
24
+ rand = { version = " 0.8.5" , default-features = false , features = [" alloc" ] }
25
+ rand_xorshift = " 0.3.0"
26
+
25
27
[[test ]]
26
28
name = " collectionstests"
27
29
path = " ../library/alloc/tests/lib.rs"
Original file line number Diff line number Diff line change @@ -22,7 +22,10 @@ miri-test-libstd = []
22
22
name = " coretests"
23
23
path = " ../library/core/tests/lib.rs"
24
24
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.
28
27
core = { 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" }
26
26
rustc-demangle = { path = " ../fake/rustc-demangle" }
27
27
28
28
[dev-dependencies ]
29
- rand = " 0.7"
29
+ rand = { version = " 0.8.5" , default-features = false , features = [" alloc" ] }
30
+ rand_xorshift = " 0.3.0"
30
31
31
32
[features ]
32
33
# Empty this crate
You can’t perform that action at this time.
0 commit comments