Skip to content

Commit 99526af

Browse files
committed
Update build.rs.
1 parent de078d6 commit 99526af

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

build.rs

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,22 @@ fn main() {
44
.channel
55
{
66
for feature in &[
7-
"can_vector", // https://github.com/rust-lang/rust/issues/69941
8-
"read_initializer", // https://github.com/rust-lang/rust/issues/42788
9-
"seek_convenience", // https://github.com/rust-lang/rust/issues/59359
10-
"with_options", // https://github.com/rust-lang/rust/issues/65439
11-
"write_all_vectored", // https://github.com/rust-lang/rust/issues/70436
12-
"windows_by_handle", // https://github.com/rust-lang/rust/issues/63010
13-
"windows_file_type_ext",
14-
"open_options_ext_as_flags", // https://github.com/rust-lang/rust/issues/76801
15-
"try_reserve", // https://github.com/rust-lang/rust/issues/56431
16-
"shrink_to", // https://github.com/rust-lang/rust/issues/56431
17-
"pattern", // https://github.com/rust-lang/rust/issues/27721
7+
"can_vector", // https://github.com/rust-lang/rust/issues/69941
188
"clamp", // https://github.com/rust-lang/rust/issues/44095
199
"extend_one", // https://github.com/rust-lang/rust/issues/72631
10+
"open_options_ext_as_flags", // https://github.com/rust-lang/rust/issues/76801
11+
"pattern", // https://github.com/rust-lang/rust/issues/27721
12+
"read_initializer", // https://github.com/rust-lang/rust/issues/42788
13+
"seek_convenience", // https://github.com/rust-lang/rust/issues/59359
14+
"shrink_to", // https://github.com/rust-lang/rust/issues/56431
2015
"toowned_clone_into", // https://github.com/rust-lang/rust/issues/41263
16+
"try_reserve", // https://github.com/rust-lang/rust/issues/56431
2117
"unix_socket_peek", // https://github.com/rust-lang/rust/issues/76923
18+
"windows_by_handle", // https://github.com/rust-lang/rust/issues/63010
19+
"with_options", // https://github.com/rust-lang/rust/issues/65439
20+
"write_all_vectored", // https://github.com/rust-lang/rust/issues/70436
21+
// https://doc.rust-lang.org/unstable-book/library-features/windows-file-type-ext.html
22+
"windows_file_type_ext",
2223
] {
2324
println!("cargo:rustc-cfg={}", feature);
2425
}

0 commit comments

Comments
 (0)