Skip to content

Commit 6756eaf

Browse files
committed
build: bump version for unsafe_pinned feature
`unsafe_pinned` exists only in some nightly releases of `1.88.0`, thus bump it to `1.89.0`. Closes: #40 Signed-off-by: Benno Lossin <[email protected]>
1 parent 36acff3 commit 6756eaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn main() {
1212
if version().unwrap() >= Version::parse("1.82.0").unwrap() {
1313
println!("cargo:rustc-cfg=RUSTC_NEW_UNINIT_IS_STABLE");
1414
}
15-
if version().unwrap() >= Version::parse("1.88.0-nightly").unwrap() {
15+
if version().unwrap() >= Version::parse("1.89.0-nightly").unwrap() {
1616
println!("cargo:rustc-cfg=CONFIG_RUSTC_HAS_UNSAFE_PINNED");
1717
}
1818
}

0 commit comments

Comments
 (0)