Skip to content

Commit 97f8fcc

Browse files
rsmyth-ecmisirhcel
authored andcommitted
Fix nightly lint causing compilation to fail
1 parent 361664b commit 97f8fcc

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,25 @@ jobs:
244244
disable_extra_builds: true
245245
disable_tests: true
246246
target: x86_64-unknown-netbsd
247+
248+
x86_64-pc-windows-msvc-nightly:
249+
uses: ./.github/workflows/build.yaml
250+
with:
251+
runs_on: windows-2019
252+
target: x86_64-pc-windows-msvc
253+
toolchain: nightly
254+
255+
x86_64-unknown-linux-gnu-nightly:
256+
uses: ./.github/workflows/build.yaml
257+
with:
258+
extra_packages: libudev-dev
259+
target: x86_64-unknown-linux-gnu
260+
toolchain: nightly
261+
262+
aarch64-apple-darwin-nightly:
263+
uses: ./.github/workflows/build.yaml
264+
with:
265+
disable_tests: true
266+
runs_on: macos-latest
267+
target: aarch64-apple-darwin
268+
toolchain: nightly

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
// doc tests.
3333
#![doc(test(attr(allow(unused_must_use))))]
3434

35-
use std::convert::From;
3635
use std::error::Error as StdError;
3736
use std::fmt;
3837
use std::io;

0 commit comments

Comments
 (0)