Skip to content

Commit

Permalink
Remove nightly feature (#37)
Browse files Browse the repository at this point in the history
We no longer need the io_error_more feature from nightly.
  • Loading branch information
rbtcollins committed Mar 30, 2022
1 parent d8e02e6 commit 08037c9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: cargo build --verbose --target ${{ matrix.arch }}-pc-windows-${{ matrix.variant }}
- name: Run tests (nightly)
if: (matrix.arch != 'aarch64') && (matrix.channel == 'nightly')
run: cargo test --verbose --target ${{ matrix.arch }}-pc-windows-${{ matrix.variant }} --features nightly
run: cargo test --verbose --target ${{ matrix.arch }}-pc-windows-${{ matrix.variant }}
- name: Run tests
if: (matrix.arch != 'aarch64') && (matrix.channel != 'nightly')
run: cargo test --verbose --target ${{ matrix.arch }}-pc-windows-${{ matrix.variant }}
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ version = "0.7.1-alpha.0"

[features]
default = []
nightly = []

[dependencies]
cfg-if = "1.0.0"
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
//! It also provides `remove_dir_contents` and `ensure_empty_dir`
//! for both Unix and Windows.

#![cfg_attr(feature = "nightly", feature(io_error_more))]
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
#![deny(rust_2018_idioms)]
Expand Down

0 comments on commit 08037c9

Please sign in to comment.