Skip to content

Rollup of 12 pull requests #140581

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
May 2, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
3d41095
Put shebang at the top of pretty-print
VlaDexa Feb 23, 2025
ff37c7d
std: use the address of `errno` to identify threads in `unique_thread…
joboet Apr 1, 2025
a576362
Document async block control flow in async keyword
Lynnesbian Apr 10, 2025
e2caab1
Doc more control flow behaviour for return keyword
Lynnesbian Apr 10, 2025
36ae657
Document breaking out of a named code block
ktnlvr Apr 23, 2025
e9d2fef
stop check paren if has different ctx
bvanjoi Apr 29, 2025
1157b78
Remove `avx512dq` and `avx512vl` implication for `avx512fp16`
sayantn Apr 18, 2025
adb92ae
rustc_target: Adjust RISC-V feature implication (Za64rs and Za128rs)
a4lg Apr 30, 2025
c6ed786
rustc_target: RISC-V: Add atomics/memory-related extensions
a4lg Apr 30, 2025
501a539
rustc_target: RISC-V: Add BF16 extensions
a4lg Apr 30, 2025
eec6cfb
rustc_target: RISC-V "Zfinx" is incompatible with {ILP32,LP64}[FD] ABIs
a4lg Mar 24, 2025
7cb357a
Make internal `OsString::truncate` and `extend_from_slice` unsafe
thaliaarchi Apr 11, 2025
0f0c0d8
Avoid redundant WTF-8 checks in `PathBuf`
thaliaarchi Apr 22, 2025
7443d03
Update stdarch
sayantn Apr 29, 2025
175f717
Simplify docs for breaking out of a named code block
ktnlvr May 1, 2025
b2bf951
Augment `impl-trait-missing-lifetime-gated.rs`.
nnethercote Mar 28, 2025
28deaa6
Delegate to inner `vec::IntoIter` from `env::ArgsOs`
thaliaarchi Apr 12, 2025
d42edee
Handle `Path<>` better in error messages.
nnethercote Apr 28, 2025
3f842e5
Improve coverage of HIR pretty printing.
nnethercote Apr 29, 2025
360012f
Amend language regarding the never type
Lynnesbian May 2, 2025
96852e2
Rollup merge of #134034 - bvanjoi:issue-131655, r=petrochenkov
Zalathar May 2, 2025
8619438
Rollup merge of #137474 - VlaDexa:shebang-placement, r=wesleywiser
Zalathar May 2, 2025
b24288b
Rollup merge of #138872 - a4lg:riscv-fix-incompatible-abi-zfinx, r=wo…
Zalathar May 2, 2025
c3f500e
Rollup merge of #139046 - nnethercote:hir-Lifetime-better, r=lcnr
Zalathar May 2, 2025
8ffdb00
Rollup merge of #139206 - joboet:unique_thread_errno, r=ibraheemdev
Zalathar May 2, 2025
192fbcc
Rollup merge of #139608 - Lynnesbian:improve-async-block-docs, r=ibra…
Zalathar May 2, 2025
6fc78d4
Rollup merge of #139847 - thaliaarchi:args/delegate-iter, r=workingju…
Zalathar May 2, 2025
5a58c7a
Rollup merge of #140159 - thaliaarchi:pathbuf-extension, r=workingjub…
Zalathar May 2, 2025
30e556e
Rollup merge of #140197 - ktnlvr:master, r=workingjubilee
Zalathar May 2, 2025
27d419a
Rollup merge of #140389 - sayantn:avx512fp16, r=Amanieu
Zalathar May 2, 2025
01adc82
Rollup merge of #140430 - nnethercote:hir-exhaustive, r=dtolnay
Zalathar May 2, 2025
19c9b76
Rollup merge of #140507 - a4lg:riscv-feature-addition-batch-3, r=Amanieu
Zalathar May 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiler/rustc_target/src/target_features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ static X86_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
("avx512cd", Unstable(sym::avx512_target_feature), &["avx512f"]),
("avx512dq", Unstable(sym::avx512_target_feature), &["avx512f"]),
("avx512f", Unstable(sym::avx512_target_feature), &["avx2", "fma", "f16c"]),
("avx512fp16", Unstable(sym::avx512_target_feature), &["avx512bw", "avx512vl", "avx512dq"]),
("avx512fp16", Unstable(sym::avx512_target_feature), &["avx512bw"]),
("avx512ifma", Unstable(sym::avx512_target_feature), &["avx512f"]),
("avx512vbmi", Unstable(sym::avx512_target_feature), &["avx512bw"]),
("avx512vbmi2", Unstable(sym::avx512_target_feature), &["avx512bw"]),
Expand Down
1 change: 0 additions & 1 deletion library/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ level = "warn"
check-cfg = [
'cfg(bootstrap)',
'cfg(no_fp_fmt_parse)',
'cfg(stdarch_intel_sde)',
# core use #[path] imports to portable-simd `core_simd` crate
# and to stdarch `core_arch` crate which messes-up with Cargo list
# of declared features, we therefor expect any feature cfg
Expand Down
2 changes: 1 addition & 1 deletion library/coretests/benches/ascii.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ static ASCII_CHARACTER_CLASS: [AsciiCharacterClass; 256] = [
];

const ASCII_PATH: &[u8] = b"home/kyubey/rust/build/x86_64-unknown-linux-gnu/stage0/lib:/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0-tools/release/deps";
const RUST_INCANTATION: &[u8] = br#"AR_x86_64_unknown_linux_gnu="ar" CARGO_INCREMENTAL="0" CARGO_PROFILE_RELEASE_DEBUG="1" CARGO_PROFILE_RELEASE_DEBUG_ASSERTIONS="false" CARGO_PROFILE_RELEASE_OVERFLOW_CHECKS="false" CARGO_TARGET_DIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0-std" CC_x86_64_unknown_linux_gnu="cc" CFG_COMPILER_HOST_TRIPLE="x86_64-unknown-linux-gnu" CFG_RELEASE_CHANNEL="dev" CFLAGS_x86_64_unknown_linux_gnu="-ffunction-sections -fdata-sections -fPIC -m64" CXXFLAGS_x86_64_unknown_linux_gnu="-ffunction-sections -fdata-sections -fPIC -m64" CXX_x86_64_unknown_linux_gnu="c++" LD_LIBRARY_PATH="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" LIBC_CHECK_CFG="1" RANLIB_x86_64_unknown_linux_gnu="ar s" REAL_LIBRARY_PATH_VAR="LD_LIBRARY_PATH" RUSTBUILD_NATIVE_DIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/native" RUSTC="/home/kyubey/workspace/rust/build/bootstrap/debug/rustc" RUSTC_BOOTSTRAP="1" RUSTC_BREAK_ON_ICE="1" RUSTC_ERROR_METADATA_DST="/home/kyubey/workspace/rust/build/tmp/extended-error-metadata" RUSTC_FORCE_UNSTABLE="1" RUSTC_HOST_FUSE_LD_LLD="1" RUSTC_INSTALL_BINDIR="bin" RUSTC_LIBDIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/lib" RUSTC_LINT_FLAGS="-Wrust_2018_idioms -Wunused_lifetimes -Wsemicolon_in_expressions_from_macros" RUSTC_REAL="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/bin/rustc" RUSTC_SNAPSHOT="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/bin/rustc" RUSTC_SNAPSHOT_LIBDIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/lib" RUSTC_STAGE="0" RUSTC_SYSROOT="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0-sysroot" RUSTC_VERBOSE="0" RUSTDOC="/home/kyubey/workspace/rust/build/bootstrap/debug/rustdoc" RUSTDOCFLAGS="-C target-cpu=native --cfg=bootstrap -Csymbol-mangling-version=legacy -Zunstable-options -Zunstable-options --check-cfg=values(bootstrap) --check-cfg=values(stdarch_intel_sde) --check-cfg=values(no_fp_fmt_parse) --check-cfg=values(no_global_oom_handling) --check-cfg=values(no_rc) --check-cfg=values(no_sync) --check-cfg=values(freebsd12) --check-cfg=values(freebsd13) --check-cfg=values(backtrace_in_libstd) --check-cfg=values(target_env,\"libnx\") --check-cfg=values(target_arch,\"asmjs\",\"spirv\",\"nvptx\",\"xtensa\") -Clink-arg=-fuse-ld=lld -Clink-arg=-Wl,--threads=1 -Wrustdoc::invalid_codeblock_attributes --crate-version 1.72.0-dev -Zcrate-attr=doc(html_root_url=\"https://doc.rust-lang.org/nightly/\") -Zcrate-attr=warn(rust_2018_idioms)" RUSTDOC_FUSE_LD_LLD="1" RUSTDOC_LIBDIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/lib" RUSTDOC_REAL="/path/to/nowhere/rustdoc/not/required" RUSTFLAGS="-C target-cpu=native --cfg=bootstrap -Csymbol-mangling-version=legacy -Zunstable-options -Zunstable-options --check-cfg=values(bootstrap) --check-cfg=values(stdarch_intel_sde) --check-cfg=values(no_fp_fmt_parse) --check-cfg=values(no_global_oom_handling) --check-cfg=values(no_rc) --check-cfg=values(no_sync) --check-cfg=values(freebsd12) --check-cfg=values(freebsd13) --check-cfg=values(backtrace_in_libstd) --check-cfg=values(target_env,\"libnx\") --check-cfg=values(target_arch,\"asmjs\",\"spirv\",\"nvptx\",\"xtensa\") -Zmacro-backtrace -Clink-args=-Wl,-z,origin -Clink-args=-Wl,-rpath,$ORIGIN/../lib -Clink-args=-fuse-ld=lld -Csplit-debuginfo=off -Cprefer-dynamic -Zinline-mir -Clto=off -Zcrate-attr=doc(html_root_url=\"https://doc.rust-lang.org/nightly/\")" RUST_COMPILER_RT_ROOT="/home/kyubey/workspace/rust/src/llvm-project/compiler-rt" RUST_TEST_THREADS="48" WINAPI_NO_BUNDLED_LIBRARIES="1" __CARGO_DEFAULT_LIB_METADATA="bootstrapstd" "/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "bench" "--target" "x86_64-unknown-linux-gnu" "-Zcheck-cfg=names,values,output" "-Zbinary-dep-depinfo" "-j" "48" "--features" " panic-unwind backtrace compiler-builtins-c" "--manifest-path" "/home/kyubey/workspace/rust/library/sysroot/Cargo.toml" "-p" "core" "--" "bench_ascii_escape_display" "--quiet" "-Z" "unstable-options" "--format" "json""#;
const RUST_INCANTATION: &[u8] = br#"AR_x86_64_unknown_linux_gnu="ar" CARGO_INCREMENTAL="0" CARGO_PROFILE_RELEASE_DEBUG="1" CARGO_PROFILE_RELEASE_DEBUG_ASSERTIONS="false" CARGO_PROFILE_RELEASE_OVERFLOW_CHECKS="false" CARGO_TARGET_DIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0-std" CC_x86_64_unknown_linux_gnu="cc" CFG_COMPILER_HOST_TRIPLE="x86_64-unknown-linux-gnu" CFG_RELEASE_CHANNEL="dev" CFLAGS_x86_64_unknown_linux_gnu="-ffunction-sections -fdata-sections -fPIC -m64" CXXFLAGS_x86_64_unknown_linux_gnu="-ffunction-sections -fdata-sections -fPIC -m64" CXX_x86_64_unknown_linux_gnu="c++" LD_LIBRARY_PATH="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" LIBC_CHECK_CFG="1" RANLIB_x86_64_unknown_linux_gnu="ar s" REAL_LIBRARY_PATH_VAR="LD_LIBRARY_PATH" RUSTBUILD_NATIVE_DIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/native" RUSTC="/home/kyubey/workspace/rust/build/bootstrap/debug/rustc" RUSTC_BOOTSTRAP="1" RUSTC_BREAK_ON_ICE="1" RUSTC_ERROR_METADATA_DST="/home/kyubey/workspace/rust/build/tmp/extended-error-metadata" RUSTC_FORCE_UNSTABLE="1" RUSTC_HOST_FUSE_LD_LLD="1" RUSTC_INSTALL_BINDIR="bin" RUSTC_LIBDIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/lib" RUSTC_LINT_FLAGS="-Wrust_2018_idioms -Wunused_lifetimes -Wsemicolon_in_expressions_from_macros" RUSTC_REAL="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/bin/rustc" RUSTC_SNAPSHOT="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/bin/rustc" RUSTC_SNAPSHOT_LIBDIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/lib" RUSTC_STAGE="0" RUSTC_SYSROOT="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0-sysroot" RUSTC_VERBOSE="0" RUSTDOC="/home/kyubey/workspace/rust/build/bootstrap/debug/rustdoc" RUSTDOCFLAGS="-C target-cpu=native --cfg=bootstrap -Csymbol-mangling-version=legacy -Zunstable-options -Zunstable-options --check-cfg=values(bootstrap) --check-cfg=values(no_fp_fmt_parse) --check-cfg=values(no_global_oom_handling) --check-cfg=values(no_rc) --check-cfg=values(no_sync) --check-cfg=values(freebsd12) --check-cfg=values(freebsd13) --check-cfg=values(backtrace_in_libstd) --check-cfg=values(target_env,\"libnx\") --check-cfg=values(target_arch,\"asmjs\",\"spirv\",\"nvptx\",\"xtensa\") -Clink-arg=-fuse-ld=lld -Clink-arg=-Wl,--threads=1 -Wrustdoc::invalid_codeblock_attributes --crate-version 1.72.0-dev -Zcrate-attr=doc(html_root_url=\"https://doc.rust-lang.org/nightly/\") -Zcrate-attr=warn(rust_2018_idioms)" RUSTDOC_FUSE_LD_LLD="1" RUSTDOC_LIBDIR="/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/lib" RUSTDOC_REAL="/path/to/nowhere/rustdoc/not/required" RUSTFLAGS="-C target-cpu=native --cfg=bootstrap -Csymbol-mangling-version=legacy -Zunstable-options -Zunstable-options --check-cfg=values(bootstrap) --check-cfg=values(no_fp_fmt_parse) --check-cfg=values(no_global_oom_handling) --check-cfg=values(no_rc) --check-cfg=values(no_sync) --check-cfg=values(freebsd12) --check-cfg=values(freebsd13) --check-cfg=values(backtrace_in_libstd) --check-cfg=values(target_env,\"libnx\") --check-cfg=values(target_arch,\"asmjs\",\"spirv\",\"nvptx\",\"xtensa\") -Zmacro-backtrace -Clink-args=-Wl,-z,origin -Clink-args=-Wl,-rpath,$ORIGIN/../lib -Clink-args=-fuse-ld=lld -Csplit-debuginfo=off -Cprefer-dynamic -Zinline-mir -Clto=off -Zcrate-attr=doc(html_root_url=\"https://doc.rust-lang.org/nightly/\")" RUST_COMPILER_RT_ROOT="/home/kyubey/workspace/rust/src/llvm-project/compiler-rt" RUST_TEST_THREADS="48" WINAPI_NO_BUNDLED_LIBRARIES="1" __CARGO_DEFAULT_LIB_METADATA="bootstrapstd" "/home/kyubey/workspace/rust/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "bench" "--target" "x86_64-unknown-linux-gnu" "-Zcheck-cfg=names,values,output" "-Zbinary-dep-depinfo" "-j" "48" "--features" " panic-unwind backtrace compiler-builtins-c" "--manifest-path" "/home/kyubey/workspace/rust/library/sysroot/Cargo.toml" "-p" "core" "--" "bench_ascii_escape_display" "--quiet" "-Z" "unstable-options" "--format" "json""#;

#[bench]
fn bench_ascii_escape_display_no_escape(b: &mut Bencher) {
Expand Down
1 change: 0 additions & 1 deletion library/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ debug_typeid = ["core/debug_typeid"]
# https://github.com/rust-lang/stdarch/blob/master/crates/std_detect/Cargo.toml
std_detect_file_io = ["std_detect/std_detect_file_io"]
std_detect_dlsym_getauxval = ["std_detect/std_detect_dlsym_getauxval"]
std_detect_env_override = ["std_detect/std_detect_env_override"]

# Enable using raw-dylib for Windows imports.
# This will eventually be the default.
Expand Down
2 changes: 1 addition & 1 deletion library/stdarch
Submodule stdarch updated 78 files
+49 −42 .github/workflows/main.yml
+1 −1 CONTRIBUTING.md
+4 −3 ci/docker/aarch64-unknown-linux-gnu/Dockerfile
+3 −2 ci/docker/aarch64_be-unknown-linux-gnu/Dockerfile
+2 −2 ci/docker/arm-unknown-linux-gnueabihf/Dockerfile
+1 −1 ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile
+1 −1 ci/docker/i586-unknown-linux-gnu/Dockerfile
+1 −1 ci/docker/i686-unknown-linux-gnu/Dockerfile
+4 −3 ci/docker/loongarch64-unknown-linux-gnu/Dockerfile
+1 −1 ci/docker/mips-unknown-linux-gnu/Dockerfile
+1 −1 ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile
+1 −1 ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile
+1 −1 ci/docker/mipsel-unknown-linux-musl/Dockerfile
+1 −1 ci/docker/nvptx64-nvidia-cuda/Dockerfile
+4 −3 ci/docker/powerpc-unknown-linux-gnu/Dockerfile
+6 −3 ci/docker/powerpc64-unknown-linux-gnu/Dockerfile
+2 −2 ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile
+2 −5 ci/docker/riscv64gc-unknown-linux-gnu/Dockerfile
+2 −2 ci/docker/s390x-unknown-linux-gnu/Dockerfile
+1 −1 ci/docker/wasm32-wasip1/Dockerfile
+0 −16 ci/docker/x86_64-unknown-linux-gnu-emulated/Dockerfile
+13 −2 ci/docker/x86_64-unknown-linux-gnu/Dockerfile
+0 −0 ci/docker/x86_64-unknown-linux-gnu/cpuid.def
+1 −3 ci/dox.sh
+10 −4 ci/run-docker.sh
+21 −21 ci/run.sh
+3 −0 crates/assert-instr-macro/Cargo.toml
+0 −2 crates/assert-instr-macro/build.rs
+8 −46 crates/assert-instr-macro/src/lib.rs
+0 −3 crates/core_arch/Cargo.toml
+0 −25 crates/core_arch/missing-x86.md
+1 −1 crates/core_arch/src/arm_shared/neon/generated.rs
+2 −2 crates/core_arch/src/powerpc/altivec.rs
+1 −1 crates/core_arch/src/wasm32/atomic.rs
+1 −1 crates/core_arch/src/wasm32/memory.rs
+1 −1 crates/core_arch/src/wasm32/relaxed_simd.rs
+1 −1 crates/core_arch/src/wasm32/simd128.rs
+30 −30 crates/core_arch/src/x86/avx.rs
+2 −8 crates/core_arch/src/x86/avx2.rs
+97 −97 crates/core_arch/src/x86/avx512f.rs
+115 −107 crates/core_arch/src/x86/avx512fp16.rs
+4 −16 crates/core_arch/src/x86/avx512ifma.rs
+32 −128 crates/core_arch/src/x86/avx512vnni.rs
+14 −56 crates/core_arch/src/x86/avxneconvert.rs
+25 −11 crates/core_arch/src/x86/mod.rs
+521 −7 crates/core_arch/src/x86/sha.rs
+29 −9 crates/core_arch/src/x86/sse.rs
+26 −14 crates/core_arch/src/x86/sse2.rs
+2 −2 crates/core_arch/src/x86/sse41.rs
+2 −2 crates/core_arch/src/x86/test.rs
+0 −2 crates/core_arch/src/x86/xsave.rs
+3 −12 crates/core_arch/src/x86_64/amx.rs
+4 −4 crates/core_arch/src/x86_64/avx512fp16.rs
+4 −4 crates/core_arch/src/x86_64/sse2.rs
+1 −1 crates/core_arch/src/x86_64/sse41.rs
+0 −2 crates/core_arch/src/x86_64/xsave.rs
+19 −19 crates/simd-test-macro/src/lib.rs
+0 −4 crates/std_detect/Cargo.toml
+3 −4 crates/std_detect/README.md
+13 −0 crates/std_detect/src/detect/arch/powerpc.rs
+13 −0 crates/std_detect/src/detect/arch/powerpc64.rs
+2 −59 crates/std_detect/src/detect/cache.rs
+0 −7 crates/std_detect/src/detect/macros.rs
+1 −118 crates/std_detect/src/detect/os/linux/aarch64.rs
+1 −38 crates/std_detect/src/detect/os/linux/arm.rs
+1 −3 crates/std_detect/src/detect/os/linux/auxvec.rs
+0 −331 crates/std_detect/src/detect/os/linux/cpuinfo.rs
+1 −3 crates/std_detect/src/detect/os/linux/mips.rs
+0 −3 crates/std_detect/src/detect/os/linux/mod.rs
+10 −11 crates/std_detect/src/detect/os/linux/powerpc.rs
+10 −4 crates/std_detect/src/detect/os/x86.rs
+1 −0 crates/std_detect/tests/cpu-detection.rs
+0 −91 crates/std_detect/tests/x86-specific.rs
+1 −1 crates/stdarch-gen-arm/spec/neon/arm_shared.spec.yml
+1 −1 crates/stdarch-test/src/disassembly.rs
+6 −4 crates/stdarch-test/src/lib.rs
+1 −8 crates/stdarch-verify/src/lib.rs
+11 −7 crates/stdarch-verify/tests/x86-intel.rs
1 change: 0 additions & 1 deletion library/sysroot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,4 @@ panic_immediate_abort = ["std/panic_immediate_abort"]
profiler = ["dep:profiler_builtins"]
std_detect_file_io = ["std/std_detect_file_io"]
std_detect_dlsym_getauxval = ["std/std_detect_dlsym_getauxval"]
std_detect_env_override = ["std/std_detect_env_override"]
windows_raw_dylib = ["std/windows_raw_dylib"]