From db5cdce88fb38b83facf39d0e69a4b6b24109ff9 Mon Sep 17 00:00:00 2001 From: "Jorge C. Leitao" Date: Sat, 5 Mar 2022 17:46:52 +0000 Subject: [PATCH] Bumped nightly to miri --- .github/workflows/test.yml | 6 +++--- src/doc/lib.md | 2 +- src/types/simd/mod.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 86e18a52c07..519579b83d8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -76,7 +76,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: nightly-2022-03-02 + toolchain: nightly-2022-03-03 override: true - uses: Swatinem/rust-cache@v1 with: @@ -99,7 +99,7 @@ jobs: submodules: true # needed to test IPC, which are located in a submodule - uses: actions-rs/toolchain@v1 with: - toolchain: nightly-2022-03-02 + toolchain: nightly-2022-03-03 override: true - uses: Swatinem/rust-cache@v1 with: @@ -189,7 +189,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: nightly-2022-03-02 + toolchain: nightly-2022-03-03 override: true - uses: Swatinem/rust-cache@v1 - name: Run diff --git a/src/doc/lib.md b/src/doc/lib.md index 3fb07c1e42f..9638ff47480 100644 --- a/src/doc/lib.md +++ b/src/doc/lib.md @@ -87,5 +87,5 @@ functionality, such as: * `compute` to operate on arrays (addition, sum, sort, etc.) The feature `simd` (not part of `full`) produces more explicit SIMD instructions -via [`packed_simd`](https://github.com/rust-lang/packed_simd), but requires the +via [`std::simd`](https://doc.rust-lang.org/nightly/std/simd/index.html), but requires the nightly channel. diff --git a/src/types/simd/mod.rs b/src/types/simd/mod.rs index 9db728b565e..d12e61bcd50 100644 --- a/src/types/simd/mod.rs +++ b/src/types/simd/mod.rs @@ -1,6 +1,6 @@ //! Contains traits and implementations of multi-data used in SIMD. //! The actual representation is driven by the feature flag `"simd"`, which, if set, -//! uses `packed_simd2` to get the intrinsics. +//! uses [`std::simd`]. use super::{days_ms, months_days_ns}; use super::{BitChunk, BitChunkIter, NativeType};