Skip to content

Commit d8efe4b

Browse files
committed
Remove the seek_stream_len feature flag.
1 parent 6059aed commit d8efe4b

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ fn main() {
99
"extend_one", // https://github.com/rust-lang/rust/issues/72631
1010
"pattern", // https://github.com/rust-lang/rust/issues/27721
1111
"seek_convenience", // https://github.com/rust-lang/rust/issues/59359
12-
"seek_stream_len ", // https://github.com/rust-lang/rust/issues/59359
1312
"shrink_to", // https://github.com/rust-lang/rust/issues/56431
1413
"toowned_clone_into", // https://github.com/rust-lang/rust/issues/41263
1514
"try_reserve", // https://github.com/rust-lang/rust/issues/56431

cap-fs-ext/build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ fn main() {
99
"extend_one", // https://github.com/rust-lang/rust/issues/72631
1010
"pattern", // https://github.com/rust-lang/rust/issues/27721
1111
"seek_convenience", // https://github.com/rust-lang/rust/issues/59359
12-
"seek_stream_len ", // https://github.com/rust-lang/rust/issues/59359
1312
"shrink_to", // https://github.com/rust-lang/rust/issues/56431
1413
"toowned_clone_into", // https://github.com/rust-lang/rust/issues/41263
1514
"try_reserve", // https://github.com/rust-lang/rust/issues/56431

cap-primitives/build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ fn main() {
99
"extend_one", // https://github.com/rust-lang/rust/issues/72631
1010
"pattern", // https://github.com/rust-lang/rust/issues/27721
1111
"seek_convenience", // https://github.com/rust-lang/rust/issues/59359
12-
"seek_stream_len", // https://github.com/rust-lang/rust/issues/59359
1312
"shrink_to", // https://github.com/rust-lang/rust/issues/56431
1413
"toowned_clone_into", // https://github.com/rust-lang/rust/issues/41263
1514
"try_reserve", // https://github.com/rust-lang/rust/issues/56431

cap-std/build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ fn main() {
99
"extend_one", // https://github.com/rust-lang/rust/issues/72631
1010
"pattern", // https://github.com/rust-lang/rust/issues/27721
1111
"seek_convenience", // https://github.com/rust-lang/rust/issues/59359
12-
"seek_stream_len", // https://github.com/rust-lang/rust/issues/59359
1312
"shrink_to", // https://github.com/rust-lang/rust/issues/56431
1413
"toowned_clone_into", // https://github.com/rust-lang/rust/issues/41263
1514
"try_reserve", // https://github.com/rust-lang/rust/issues/56431

cap-std/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#![cfg_attr(target_os = "wasi", feature(wasi_ext))]
2828
#![cfg_attr(can_vector, feature(can_vector))]
2929
#![cfg_attr(seek_convenience, feature(seek_convenience))]
30-
#![cfg_attr(seek_stream_len, feature(seek_stream_len))]
3130
#![cfg_attr(with_options, feature(with_options))]
3231
#![cfg_attr(write_all_vectored, feature(write_all_vectored))]
3332
#![doc(

0 commit comments

Comments
 (0)