Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Bumped nightly to miri
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao committed Mar 5, 2022
1 parent de4f3da commit db5cdce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/doc/lib.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion src/types/simd/mod.rs
Original file line number Diff line number Diff line change
@@ -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};

Expand Down

0 comments on commit db5cdce

Please sign in to comment.