Skip to content

Commit 898f26a

Browse files
committed
Update the rust-toolchain pin from nightly 2018-10-01 to 2018-12-04.
The old pin was a nightly of 1.30.0. The rand dependency pulls in the latest 0.2.44 version of libc. (As does criterion in test mode.) This version of libc has a #[cfg] which ends up doing pub use core::ffi::c_void; on most platforms (including OSX High Sierra and various *nix which I've tested on). However, libcore [stabilised the ffi module during 1.30.0](https://doc.rust-lang.org/nightly/src/core/ffi.rs.html#1) causing the older nightly from a couple months ago to be unable to find it while compiling libc. This fixes the issue by updating the pinned nightly. (This will probably break some rustfmt things on CI, since @hdevalence said that's why the pin was created in the first place.)
1 parent 80ecce4 commit 898f26a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2018-10-01
1+
nightly-2018-12-04

0 commit comments

Comments
 (0)