rust/library/std/src
许杰友 Jieyou Xu (Joe) e1e26f339d
Rollup merge of #135491 - RalfJung:remove-dead-rustc_allowed_through_unstable_modules, r=Mark-Simulacrum
Remove dead rustc_allowed_through_unstable_modules for std::os::fd contents

As far as I was able to reconstruct, the history here is roughly as follows:
- https://github.com/rust-lang/rust/pull/99723 added some `rustc_allowed_through_unstable_modules` to the types in `std::os::fd::raw` since they were accessible on stable via the unstable `std::os::wasi::io::AsRawFd` path. (This was needed to fix https://github.com/rust-lang/rust/issues/99502.)
- Shortly thereafter, https://github.com/rust-lang/rust/pull/98368 re-organized things so that instead of re-exporting from an internal  `std::os::wasi::io::raw`,   `std::os::wasi::io::AsRawFd` is now directly re-exported from `std::os::fd`. This also made `library/std/src/os/wasi/io/raw.rs` entirely dead code as far as I can tell, it's not imported by anything any more.
- Shortly thereafter, https://github.com/rust-lang/rust/pull/103308 stabilizes `std::os::wasi::io`, so `rustc_allowed_through_unstable_modules` is not needed any more to access `std::os::wasi::io::AsRawFd`. There is even a comment in `library/std/src/os/wasi/io/raw.rs` saying the attribute can be removed now, but that file is dead code so it is not touched as part of the stabilization.

I did a grep for `pub use crate::os::fd` and all the re-exports I could find are in stable modules. So given all that, we can remove the  `rustc_allowed_through_unstable_modules` (hoping they are not also re-exported somewhere else, it's really hard to be sure about this).

I have checked that std still builds after this PR on the wasm32-wasip2 target.
2025-01-20 12:38:32 +08:00
..
backtrace remove redundant imports 2023-12-10 10:56:22 +08:00
collections fmt 2025-01-08 22:11:33 +01:00
env Fix std tests for wasm32-wasip2 target 2024-09-29 04:48:13 +02:00
error Reformat use declarations. 2024-07-29 08:26:52 +10:00
f16 std float tests: special-case Miri in feature detection 2024-08-08 12:17:50 +02:00
f32 these tests seem to work fine on i586 these days 2024-09-10 15:57:40 -07:00
f64 these tests seem to work fine on i586 these days 2024-09-10 15:57:40 -07:00
f128 Separate f128 % operation to deal with missing fmodl symbol 2024-11-07 11:33:10 +01:00
ffi Add inherent versions of MaybeUninit methods for slices 2025-01-11 23:57:00 -05:00
fs Fix renaming symlinks on Windows 2024-12-27 10:07:10 +00:00
hash remove const_hash feature leftovers 2024-11-02 11:27:14 +01:00
io Move std::pipe::* into std::io 2025-01-17 01:30:05 +11:00
net std: update internal uses of io::const_error! 2024-11-26 18:38:24 +01:00
num removed nonfunctioning benchmark 2024-01-11 11:30:12 -05:00
os wasi/io: remove dead files 2025-01-14 17:28:33 +01:00
panic review: fix nits and move panic safety tests to the correct place 2020-09-25 23:10:24 +02:00
path Add inherent versions of MaybeUninit methods for slices 2025-01-11 23:57:00 -05:00
prelude update cfg(bootstrap) 2025-01-08 21:26:39 +01:00
process Abstract ProcThreadAttributeList into its own struct 2024-11-30 10:17:59 +01:00
sync Clarify note in std::sync::LazyLock example 2025-01-15 16:08:22 -05:00
sys Fix import of pipe in kernel_copy.rs 2025-01-18 00:44:44 +11:00
sys_common Avoid naming variables str 2025-01-07 14:30:02 +02:00
thread add comments explaining main thread identification 2025-01-14 13:37:28 +01:00
time Reformat using the new identifier sorting from rustfmt 2024-09-22 19:11:29 -04:00
alloc.rs Reformat use declarations. 2024-07-29 08:26:52 +10:00
ascii.rs Reformat using the new identifier sorting from rustfmt 2024-09-22 19:11:29 -04:00
backtrace.rs Reformat using the new identifier sorting from rustfmt 2024-09-22 19:11:29 -04:00
env.rs update version placeholders 2025-01-08 20:02:18 +01:00
error.rs Reformat using the new identifier sorting from rustfmt 2024-09-22 19:11:29 -04:00
f16.rs Add doc aliases for libm and IEEE names 2025-01-05 01:03:32 +00:00
f32.rs Add doc aliases for libm and IEEE names 2025-01-05 01:03:32 +00:00
f64.rs Add doc aliases for libm and IEEE names 2025-01-05 01:03:32 +00:00
f128.rs Add doc aliases for libm and IEEE names 2025-01-05 01:03:32 +00:00
fs.rs docs: Permissions.readonly() also ignores root user special permissions 2024-12-22 20:47:41 +02:00
keyword_docs.rs Remove rustc::existing_doc_keyword lint. 2024-12-17 13:56:10 +11:00
lib.miri.rs add 'x.py miri', and make it work for 'library/{core,alloc,std}' 2024-04-03 20:27:20 +02:00
lib.rs Rollup merge of #135661 - tgross35:stabilize-float_next_up_down, r=scottmcm 2025-01-18 13:58:06 +01:00
macros.rs Add math functions for f16 and f128 2024-08-01 15:38:51 -04:00
num.rs Reformat using the new identifier sorting from rustfmt 2024-09-22 19:11:29 -04:00
panic.rs Auto merge of #128321 - BatmanAoD:catch-unwind-doc-update, r=Mark-Simulacrum 2024-09-29 05:54:47 +00:00
panicking.rs std: lazily allocate the main thread handle 2025-01-14 13:37:28 +01:00
pat.rs Add pattern types to parser 2024-04-08 11:57:17 +00:00
path.rs path: Move is_absolute check to sys::path 2025-01-13 11:52:03 +05:30
process.rs Rollup merge of #135176 - kornelski:env-example, r=cuviper 2025-01-08 00:52:48 -05:00
random.rs AIX use /dev/urandom for impl 2024-10-22 20:18:11 -04:00
rt.rs Rollup merge of #135446 - klensy:panic_immediate_abort_ext, r=Mark-Simulacrum 2025-01-20 12:38:32 +08:00
time.rs library: consistently use American spelling for 'behavior' 2024-10-25 12:02:47 +02:00