From 5b2de8ab27e4a319e23817b61830a5cc6fd1745e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Fri, 4 Jul 2025 09:26:12 +0200 Subject: [PATCH] Move `std_detect` from `library/stdarch` to `library` --- library/{stdarch/crates => }/std_detect/Cargo.toml | 0 .../{stdarch/crates => }/std_detect/LICENSE-APACHE | 0 library/{stdarch/crates => }/std_detect/LICENSE-MIT | 0 library/{stdarch/crates => }/std_detect/README.md | 0 .../std_detect/src/detect/arch/aarch64.rs | 0 .../crates => }/std_detect/src/detect/arch/arm.rs | 0 .../std_detect/src/detect/arch/loongarch.rs | 0 .../crates => }/std_detect/src/detect/arch/mips.rs | 0 .../std_detect/src/detect/arch/mips64.rs | 0 .../crates => }/std_detect/src/detect/arch/mod.rs | 0 .../std_detect/src/detect/arch/powerpc.rs | 0 .../std_detect/src/detect/arch/powerpc64.rs | 0 .../crates => }/std_detect/src/detect/arch/riscv.rs | 0 .../crates => }/std_detect/src/detect/arch/s390x.rs | 0 .../crates => }/std_detect/src/detect/arch/x86.rs | 0 .../crates => }/std_detect/src/detect/bit.rs | 0 .../crates => }/std_detect/src/detect/cache.rs | 0 .../crates => }/std_detect/src/detect/macros.rs | 0 .../crates => }/std_detect/src/detect/mod.rs | 0 .../crates => }/std_detect/src/detect/os/aarch64.rs | 0 .../std_detect/src/detect/os/darwin/aarch64.rs | 0 .../std_detect/src/detect/os/freebsd/aarch64.rs | 0 .../std_detect/src/detect/os/freebsd/arm.rs | 0 .../std_detect/src/detect/os/freebsd/auxvec.rs | 0 .../std_detect/src/detect/os/freebsd/mod.rs | 0 .../std_detect/src/detect/os/freebsd/powerpc.rs | 0 .../std_detect/src/detect/os/linux/aarch64.rs | 0 .../std_detect/src/detect/os/linux/arm.rs | 0 .../std_detect/src/detect/os/linux/auxvec.rs | 0 .../std_detect/src/detect/os/linux/loongarch.rs | 0 .../std_detect/src/detect/os/linux/mips.rs | 0 .../std_detect/src/detect/os/linux/mod.rs | 0 .../std_detect/src/detect/os/linux/powerpc.rs | 0 .../std_detect/src/detect/os/linux/riscv.rs | 0 .../std_detect/src/detect/os/linux/s390x.rs | 0 .../std_detect/src/detect/os/openbsd/aarch64.rs | 0 .../crates => }/std_detect/src/detect/os/other.rs | 0 .../crates => }/std_detect/src/detect/os/riscv.rs | 0 .../std_detect/src/detect/os/windows/aarch64.rs | 0 .../crates => }/std_detect/src/detect/os/x86.rs | 0 .../detect/test_data/linux-artificial-aarch64.auxv | Bin .../test_data/linux-empty-hwcap2-aarch64.auxv | Bin .../src/detect/test_data/linux-hwcap2-aarch64.auxv | Bin .../detect/test_data/linux-no-hwcap2-aarch64.auxv | Bin .../std_detect/src/detect/test_data/linux-rpi3.auxv | Bin .../macos-virtualbox-linux-x86-4850HQ.auxv | Bin library/{stdarch/crates => }/std_detect/src/lib.rs | 0 .../crates => }/std_detect/tests/cpu-detection.rs | 0 .../std_detect/tests/macro_trailing_commas.rs | 0 .../crates => }/std_detect/tests/x86-specific.rs | 0 50 files changed, 0 insertions(+), 0 deletions(-) rename library/{stdarch/crates => }/std_detect/Cargo.toml (100%) rename library/{stdarch/crates => }/std_detect/LICENSE-APACHE (100%) rename library/{stdarch/crates => }/std_detect/LICENSE-MIT (100%) rename library/{stdarch/crates => }/std_detect/README.md (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/aarch64.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/arm.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/loongarch.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/mips.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/mips64.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/mod.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/powerpc.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/powerpc64.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/riscv.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/s390x.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/arch/x86.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/bit.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/cache.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/macros.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/mod.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/aarch64.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/darwin/aarch64.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/freebsd/aarch64.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/freebsd/arm.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/freebsd/auxvec.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/freebsd/mod.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/freebsd/powerpc.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/linux/aarch64.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/linux/arm.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/linux/auxvec.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/linux/loongarch.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/linux/mips.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/linux/mod.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/linux/powerpc.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/linux/riscv.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/linux/s390x.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/openbsd/aarch64.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/other.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/riscv.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/windows/aarch64.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/os/x86.rs (100%) rename library/{stdarch/crates => }/std_detect/src/detect/test_data/linux-artificial-aarch64.auxv (100%) rename library/{stdarch/crates => }/std_detect/src/detect/test_data/linux-empty-hwcap2-aarch64.auxv (100%) rename library/{stdarch/crates => }/std_detect/src/detect/test_data/linux-hwcap2-aarch64.auxv (100%) rename library/{stdarch/crates => }/std_detect/src/detect/test_data/linux-no-hwcap2-aarch64.auxv (100%) rename library/{stdarch/crates => }/std_detect/src/detect/test_data/linux-rpi3.auxv (100%) rename library/{stdarch/crates => }/std_detect/src/detect/test_data/macos-virtualbox-linux-x86-4850HQ.auxv (100%) rename library/{stdarch/crates => }/std_detect/src/lib.rs (100%) rename library/{stdarch/crates => }/std_detect/tests/cpu-detection.rs (100%) rename library/{stdarch/crates => }/std_detect/tests/macro_trailing_commas.rs (100%) rename library/{stdarch/crates => }/std_detect/tests/x86-specific.rs (100%) diff --git a/library/stdarch/crates/std_detect/Cargo.toml b/library/std_detect/Cargo.toml similarity index 100% rename from library/stdarch/crates/std_detect/Cargo.toml rename to library/std_detect/Cargo.toml diff --git a/library/stdarch/crates/std_detect/LICENSE-APACHE b/library/std_detect/LICENSE-APACHE similarity index 100% rename from library/stdarch/crates/std_detect/LICENSE-APACHE rename to library/std_detect/LICENSE-APACHE diff --git a/library/stdarch/crates/std_detect/LICENSE-MIT b/library/std_detect/LICENSE-MIT similarity index 100% rename from library/stdarch/crates/std_detect/LICENSE-MIT rename to library/std_detect/LICENSE-MIT diff --git a/library/stdarch/crates/std_detect/README.md b/library/std_detect/README.md similarity index 100% rename from library/stdarch/crates/std_detect/README.md rename to library/std_detect/README.md diff --git a/library/stdarch/crates/std_detect/src/detect/arch/aarch64.rs b/library/std_detect/src/detect/arch/aarch64.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/aarch64.rs rename to library/std_detect/src/detect/arch/aarch64.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/arm.rs b/library/std_detect/src/detect/arch/arm.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/arm.rs rename to library/std_detect/src/detect/arch/arm.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/loongarch.rs b/library/std_detect/src/detect/arch/loongarch.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/loongarch.rs rename to library/std_detect/src/detect/arch/loongarch.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/mips.rs b/library/std_detect/src/detect/arch/mips.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/mips.rs rename to library/std_detect/src/detect/arch/mips.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/mips64.rs b/library/std_detect/src/detect/arch/mips64.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/mips64.rs rename to library/std_detect/src/detect/arch/mips64.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/mod.rs b/library/std_detect/src/detect/arch/mod.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/mod.rs rename to library/std_detect/src/detect/arch/mod.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/powerpc.rs b/library/std_detect/src/detect/arch/powerpc.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/powerpc.rs rename to library/std_detect/src/detect/arch/powerpc.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/powerpc64.rs b/library/std_detect/src/detect/arch/powerpc64.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/powerpc64.rs rename to library/std_detect/src/detect/arch/powerpc64.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/riscv.rs b/library/std_detect/src/detect/arch/riscv.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/riscv.rs rename to library/std_detect/src/detect/arch/riscv.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/s390x.rs b/library/std_detect/src/detect/arch/s390x.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/s390x.rs rename to library/std_detect/src/detect/arch/s390x.rs diff --git a/library/stdarch/crates/std_detect/src/detect/arch/x86.rs b/library/std_detect/src/detect/arch/x86.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/arch/x86.rs rename to library/std_detect/src/detect/arch/x86.rs diff --git a/library/stdarch/crates/std_detect/src/detect/bit.rs b/library/std_detect/src/detect/bit.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/bit.rs rename to library/std_detect/src/detect/bit.rs diff --git a/library/stdarch/crates/std_detect/src/detect/cache.rs b/library/std_detect/src/detect/cache.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/cache.rs rename to library/std_detect/src/detect/cache.rs diff --git a/library/stdarch/crates/std_detect/src/detect/macros.rs b/library/std_detect/src/detect/macros.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/macros.rs rename to library/std_detect/src/detect/macros.rs diff --git a/library/stdarch/crates/std_detect/src/detect/mod.rs b/library/std_detect/src/detect/mod.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/mod.rs rename to library/std_detect/src/detect/mod.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/aarch64.rs b/library/std_detect/src/detect/os/aarch64.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/aarch64.rs rename to library/std_detect/src/detect/os/aarch64.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/darwin/aarch64.rs b/library/std_detect/src/detect/os/darwin/aarch64.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/darwin/aarch64.rs rename to library/std_detect/src/detect/os/darwin/aarch64.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/freebsd/aarch64.rs b/library/std_detect/src/detect/os/freebsd/aarch64.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/freebsd/aarch64.rs rename to library/std_detect/src/detect/os/freebsd/aarch64.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/freebsd/arm.rs b/library/std_detect/src/detect/os/freebsd/arm.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/freebsd/arm.rs rename to library/std_detect/src/detect/os/freebsd/arm.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/freebsd/auxvec.rs b/library/std_detect/src/detect/os/freebsd/auxvec.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/freebsd/auxvec.rs rename to library/std_detect/src/detect/os/freebsd/auxvec.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/freebsd/mod.rs b/library/std_detect/src/detect/os/freebsd/mod.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/freebsd/mod.rs rename to library/std_detect/src/detect/os/freebsd/mod.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/freebsd/powerpc.rs b/library/std_detect/src/detect/os/freebsd/powerpc.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/freebsd/powerpc.rs rename to library/std_detect/src/detect/os/freebsd/powerpc.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/aarch64.rs b/library/std_detect/src/detect/os/linux/aarch64.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/linux/aarch64.rs rename to library/std_detect/src/detect/os/linux/aarch64.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/arm.rs b/library/std_detect/src/detect/os/linux/arm.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/linux/arm.rs rename to library/std_detect/src/detect/os/linux/arm.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/auxvec.rs b/library/std_detect/src/detect/os/linux/auxvec.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/linux/auxvec.rs rename to library/std_detect/src/detect/os/linux/auxvec.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/loongarch.rs b/library/std_detect/src/detect/os/linux/loongarch.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/linux/loongarch.rs rename to library/std_detect/src/detect/os/linux/loongarch.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/mips.rs b/library/std_detect/src/detect/os/linux/mips.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/linux/mips.rs rename to library/std_detect/src/detect/os/linux/mips.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/mod.rs b/library/std_detect/src/detect/os/linux/mod.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/linux/mod.rs rename to library/std_detect/src/detect/os/linux/mod.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/powerpc.rs b/library/std_detect/src/detect/os/linux/powerpc.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/linux/powerpc.rs rename to library/std_detect/src/detect/os/linux/powerpc.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/riscv.rs b/library/std_detect/src/detect/os/linux/riscv.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/linux/riscv.rs rename to library/std_detect/src/detect/os/linux/riscv.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/s390x.rs b/library/std_detect/src/detect/os/linux/s390x.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/linux/s390x.rs rename to library/std_detect/src/detect/os/linux/s390x.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/openbsd/aarch64.rs b/library/std_detect/src/detect/os/openbsd/aarch64.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/openbsd/aarch64.rs rename to library/std_detect/src/detect/os/openbsd/aarch64.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/other.rs b/library/std_detect/src/detect/os/other.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/other.rs rename to library/std_detect/src/detect/os/other.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/riscv.rs b/library/std_detect/src/detect/os/riscv.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/riscv.rs rename to library/std_detect/src/detect/os/riscv.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/windows/aarch64.rs b/library/std_detect/src/detect/os/windows/aarch64.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/windows/aarch64.rs rename to library/std_detect/src/detect/os/windows/aarch64.rs diff --git a/library/stdarch/crates/std_detect/src/detect/os/x86.rs b/library/std_detect/src/detect/os/x86.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/os/x86.rs rename to library/std_detect/src/detect/os/x86.rs diff --git a/library/stdarch/crates/std_detect/src/detect/test_data/linux-artificial-aarch64.auxv b/library/std_detect/src/detect/test_data/linux-artificial-aarch64.auxv similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/test_data/linux-artificial-aarch64.auxv rename to library/std_detect/src/detect/test_data/linux-artificial-aarch64.auxv diff --git a/library/stdarch/crates/std_detect/src/detect/test_data/linux-empty-hwcap2-aarch64.auxv b/library/std_detect/src/detect/test_data/linux-empty-hwcap2-aarch64.auxv similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/test_data/linux-empty-hwcap2-aarch64.auxv rename to library/std_detect/src/detect/test_data/linux-empty-hwcap2-aarch64.auxv diff --git a/library/stdarch/crates/std_detect/src/detect/test_data/linux-hwcap2-aarch64.auxv b/library/std_detect/src/detect/test_data/linux-hwcap2-aarch64.auxv similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/test_data/linux-hwcap2-aarch64.auxv rename to library/std_detect/src/detect/test_data/linux-hwcap2-aarch64.auxv diff --git a/library/stdarch/crates/std_detect/src/detect/test_data/linux-no-hwcap2-aarch64.auxv b/library/std_detect/src/detect/test_data/linux-no-hwcap2-aarch64.auxv similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/test_data/linux-no-hwcap2-aarch64.auxv rename to library/std_detect/src/detect/test_data/linux-no-hwcap2-aarch64.auxv diff --git a/library/stdarch/crates/std_detect/src/detect/test_data/linux-rpi3.auxv b/library/std_detect/src/detect/test_data/linux-rpi3.auxv similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/test_data/linux-rpi3.auxv rename to library/std_detect/src/detect/test_data/linux-rpi3.auxv diff --git a/library/stdarch/crates/std_detect/src/detect/test_data/macos-virtualbox-linux-x86-4850HQ.auxv b/library/std_detect/src/detect/test_data/macos-virtualbox-linux-x86-4850HQ.auxv similarity index 100% rename from library/stdarch/crates/std_detect/src/detect/test_data/macos-virtualbox-linux-x86-4850HQ.auxv rename to library/std_detect/src/detect/test_data/macos-virtualbox-linux-x86-4850HQ.auxv diff --git a/library/stdarch/crates/std_detect/src/lib.rs b/library/std_detect/src/lib.rs similarity index 100% rename from library/stdarch/crates/std_detect/src/lib.rs rename to library/std_detect/src/lib.rs diff --git a/library/stdarch/crates/std_detect/tests/cpu-detection.rs b/library/std_detect/tests/cpu-detection.rs similarity index 100% rename from library/stdarch/crates/std_detect/tests/cpu-detection.rs rename to library/std_detect/tests/cpu-detection.rs diff --git a/library/stdarch/crates/std_detect/tests/macro_trailing_commas.rs b/library/std_detect/tests/macro_trailing_commas.rs similarity index 100% rename from library/stdarch/crates/std_detect/tests/macro_trailing_commas.rs rename to library/std_detect/tests/macro_trailing_commas.rs diff --git a/library/stdarch/crates/std_detect/tests/x86-specific.rs b/library/std_detect/tests/x86-specific.rs similarity index 100% rename from library/stdarch/crates/std_detect/tests/x86-specific.rs rename to library/std_detect/tests/x86-specific.rs