Skip to content

Commit 824e56a

Browse files
committedAug 9, 2022
Updating toolchain version
1 parent 937b6a6 commit 824e56a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "nightly-2022-03-08"
2+
channel = "nightly-2022-08-03"
33
components = ["cargo", "rust-docs", "rust-src", "rust-std", "rustc", "rustfmt"]
44
targets = ["aarch64-unknown-linux-musl", "x86_64-apple-darwin", "x86_64-unknown-linux-musl"]
55
profile = "minimal"

‎workspace/swiss-army-knife/src/byte_swap/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44

55
use super::*;
6-
use std::arch::asm;
76
use crate::get_unchecked::GetUnchecked;
87
use cfg_if::cfg_if;
98
#[cfg(all(target_arch = "x86_64", target_feature = "ssse3"))] use std::arch::x86_64::__m128i as BytesVector128;

0 commit comments

Comments
 (0)
Please sign in to comment.