Skip to content
This repository was archived by the owner on May 10, 2023. It is now read-only.

Commit 03e7b22

Browse files
committed
Accommodate the recent changes in the Nightly Rust compiler
- The `macro_reexport` feature was removed and superseded by `use_extern_macros`. <rust-lang/rust#29638> - Switch to the version of `stdsimd` provided directly by the toolchain rather than one distributed via crates.io or github.io - `never_type` is unstable again <rust-lang/rust#35121> - `cfg_target_feature` is stable since 1.27.0 - `target_feature` is stable since 1.27.0
1 parent a30c87a commit 03e7b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
//
2929
#![cfg_attr(test, feature(test))]
3030
#![cfg_attr(not(debug_assertions), feature(slice_get_slice))]
31-
#![feature(platform_intrinsics, cfg_target_feature)]
31+
#![feature(platform_intrinsics)]
3232

3333
extern crate num_complex;
3434
extern crate num_iter;

0 commit comments

Comments
 (0)