Skip to content

Commit 08037c9

Browse files
authored
Remove nightly feature (#37)
We no longer need the io_error_more feature from nightly.
1 parent d8e02e6 commit 08037c9

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: cargo build --verbose --target ${{ matrix.arch }}-pc-windows-${{ matrix.variant }}
4141
- name: Run tests (nightly)
4242
if: (matrix.arch != 'aarch64') && (matrix.channel == 'nightly')
43-
run: cargo test --verbose --target ${{ matrix.arch }}-pc-windows-${{ matrix.variant }} --features nightly
43+
run: cargo test --verbose --target ${{ matrix.arch }}-pc-windows-${{ matrix.variant }}
4444
- name: Run tests
4545
if: (matrix.arch != 'aarch64') && (matrix.channel != 'nightly')
4646
run: cargo test --verbose --target ${{ matrix.arch }}-pc-windows-${{ matrix.variant }}

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ version = "0.7.1-alpha.0"
2222

2323
[features]
2424
default = []
25-
nightly = []
2625

2726
[dependencies]
2827
cfg-if = "1.0.0"

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
//! It also provides `remove_dir_contents` and `ensure_empty_dir`
77
//! for both Unix and Windows.
88
9-
#![cfg_attr(feature = "nightly", feature(io_error_more))]
109
#![deny(missing_debug_implementations)]
1110
#![deny(missing_docs)]
1211
#![deny(rust_2018_idioms)]

0 commit comments

Comments
 (0)