File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,8 @@ jobs:
217
217
# Omit --all-targets on gnu_ilp32 because dev-dependency tempfile depends on an older rustix
218
218
- run : cargo check -Z build-std --target aarch64-unknown-linux-gnu_ilp32 --features=all-apis
219
219
# Omit --all-targets on haiku because not all the tests build yet.
220
- - run : cargo check -Z build-std --target x86_64-unknown-haiku --features=all-apis
220
+ # Temporarily disable this because the target appears to have breakage on nightly.
221
+ # - run: cargo check -Z build-std --target x86_64-unknown-haiku --features=all-apis
221
222
- run : cargo check -Z build-std --target x86_64-uwp-windows-msvc --all-targets --features=all-apis
222
223
# Temporarily disable riscv32imc-esp-espidf due to std using SOMAXCONN.
223
224
# - run: cargo check -Z build-std --target=riscv32imc-esp-espidf --features=all-apis
Original file line number Diff line number Diff line change 17
17
//! [man-pages]: https://man7.org/linux/man-pages/man7/netdevice.7.html
18
18
//! [Linux]: https://man7.org/linux/man-pages/man7/netdevice.7.html
19
19
20
- #[ cfg( feature = "alloc" ) ]
21
- use crate :: alloc:: string:: String ;
22
20
use crate :: fd:: AsFd ;
23
21
use crate :: io;
22
+ #[ cfg( feature = "alloc" ) ]
23
+ use alloc:: string:: String ;
24
24
25
25
/// `ioctl(fd, SIOCGIFINDEX, ifreq)`—Returns the interface index for a given
26
26
/// name.
You can’t perform that action at this time.
0 commit comments