Skip to content

Commit e77d2e6

Browse files
authored
Merge pull request #81 from rust-osdev/nightly-fix
Remove stabilized feature
2 parents 3ccc544 + f00b820 commit e77d2e6

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
name: "Miri tests"
136136
runs-on: ubuntu-latest
137137
env:
138-
MIRIFLAGS: "-Zmiri-disable-isolation -Zmiri-strict-provenance -Zmiri-tag-raw-pointers"
138+
MIRIFLAGS: "-Zmiri-disable-isolation -Zmiri-strict-provenance"
139139
steps:
140140
- uses: actions/checkout@v1
141141
- run: rustup toolchain install nightly --profile minimal --component rust-src miri

src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
#![cfg_attr(
2-
feature = "alloc_ref",
3-
feature(allocator_api, alloc_layout_extra, nonnull_slice_from_raw_parts)
4-
)]
1+
#![cfg_attr(feature = "alloc_ref", feature(allocator_api, alloc_layout_extra))]
52
#![no_std]
63

74
#[cfg(any(test, fuzzing))]

0 commit comments

Comments
 (0)