From 685e8d906d91c0e3253531a1784407cb4d026e20 Mon Sep 17 00:00:00 2001 From: Mara Bos Date: Wed, 11 Aug 2021 22:51:39 +0200 Subject: [PATCH] Remove references to the crates on crates.io. They haven't been published in years. This removes the suggestion that the crates on crates.io are actively updated/maintained. --- library/stdarch/README.md | 26 ++------------------ library/stdarch/crates/core_arch/Cargo.toml | 1 - library/stdarch/crates/core_arch/README.md | 8 ------ library/stdarch/crates/std_detect/Cargo.toml | 1 - library/stdarch/crates/std_detect/README.md | 8 ------ 5 files changed, 2 insertions(+), 42 deletions(-) diff --git a/library/stdarch/README.md b/library/stdarch/README.md index 490ca6fe7952..129ce2fdf57d 100644 --- a/library/stdarch/README.md +++ b/library/stdarch/README.md @@ -8,33 +8,11 @@ stdarch - Rust's standard library SIMD components This repository contains two main crates: -* [![core_arch_crate_badge]][core_arch_crate_link] - [![core_arch_docs_badge]][core_arch_docs_link] - [`core_arch`](crates/core_arch/README.md) implements `core::arch` - Rust's +* [`core_arch`](crates/core_arch/README.md) implements `core::arch` - Rust's core library architecture-specific intrinsics, and -* [![std_detect_crate_badge]][std_detect_crate_link] - [![std_detect_docs_badge]][std_detect_docs_link] - [`std_detect`](crates/std_detect/README.md) implements `std::detect` - Rust's +* [`std_detect`](crates/std_detect/README.md) implements `std::detect` - Rust's standard library run-time CPU feature detection. The `std::simd` component now lives in the [`packed_simd`](https://github.com/rust-lang-nursery/packed_simd) crate. - -# How to do a release - -To do a release of the `core_arch` and `std_detect` crates, - -* bump up the version appropriately, -* comment out the `dev-dependencies` in their `Cargo.toml` files (due to - https://github.com/rust-lang/cargo/issues/4242), -* publish the crates. - -[core_arch_crate_badge]: https://img.shields.io/crates/v/core_arch.svg -[core_arch_crate_link]: https://crates.io/crates/core_arch -[core_arch_docs_badge]: https://docs.rs/core_arch/badge.svg -[core_arch_docs_link]: https://docs.rs/core_arch/ -[std_detect_crate_badge]: https://img.shields.io/crates/v/std_detect.svg -[std_detect_crate_link]: https://crates.io/crates/std_detect -[std_detect_docs_badge]: https://docs.rs/std_detect/badge.svg -[std_detect_docs_link]: https://docs.rs/std_detect/ diff --git a/library/stdarch/crates/core_arch/Cargo.toml b/library/stdarch/crates/core_arch/Cargo.toml index a89959114344..3eb12557c91d 100644 --- a/library/stdarch/crates/core_arch/Cargo.toml +++ b/library/stdarch/crates/core_arch/Cargo.toml @@ -7,7 +7,6 @@ authors = [ "Gonzalo Brito Gadeschi ", ] description = "`core::arch` - Rust's core library architecture-specific intrinsics." -documentation = "https://docs.rs/core_arch" homepage = "https://github.com/rust-lang/stdarch" repository = "https://github.com/rust-lang/stdarch" readme = "README.md" diff --git a/library/stdarch/crates/core_arch/README.md b/library/stdarch/crates/core_arch/README.md index 1f53db4c4f83..a5f490bcf5d3 100644 --- a/library/stdarch/crates/core_arch/README.md +++ b/library/stdarch/crates/core_arch/README.md @@ -1,9 +1,6 @@ `core::arch` - Rust's core library architecture-specific intrinsics ======= -[![core_arch_crate_badge]][core_arch_crate_link] [![core_arch_docs_badge]][core_arch_docs_link] - - The `core::arch` module implements architecture-dependent intrinsics (e.g. SIMD). # Usage @@ -61,8 +58,3 @@ See LICENSE-APACHE, and LICENSE-MIT for details. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in `core_arch` by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. - -[core_arch_crate_badge]: https://img.shields.io/crates/v/core_arch.svg -[core_arch_crate_link]: https://crates.io/crates/core_arch -[core_arch_docs_badge]: https://docs.rs/core_arch/badge.svg -[core_arch_docs_link]: https://docs.rs/core_arch/ diff --git a/library/stdarch/crates/std_detect/Cargo.toml b/library/stdarch/crates/std_detect/Cargo.toml index 4d0f93d8cfd9..924c2194fcc8 100644 --- a/library/stdarch/crates/std_detect/Cargo.toml +++ b/library/stdarch/crates/std_detect/Cargo.toml @@ -7,7 +7,6 @@ authors = [ "Gonzalo Brito Gadeschi ", ] description = "`std::detect` - Rust's standard library run-time CPU feature detection." -documentation = "https://docs.rs/std_detect" homepage = "https://github.com/rust-lang/stdarch" repository = "https://github.com/rust-lang/stdarch" readme = "README.md" diff --git a/library/stdarch/crates/std_detect/README.md b/library/stdarch/crates/std_detect/README.md index bb26c34719a1..bea7d941a70d 100644 --- a/library/stdarch/crates/std_detect/README.md +++ b/library/stdarch/crates/std_detect/README.md @@ -1,9 +1,6 @@ `std::detect` - Rust's standard library run-time CPU feature detection ======= -[![std_detect_crate_badge]][std_detect_crate_link] [![std_detect_docs_badge]][std_detect_docs_link] - - The private `std::detect` module implements run-time feature detection in Rust's standard library. This allows detecting whether the CPU the binary runs on supports certain features, like SIMD instructions. @@ -74,8 +71,3 @@ at your option. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in `std_detect` by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. - -[std_detect_crate_badge]: https://img.shields.io/crates/v/std_detect.svg -[std_detect_crate_link]: https://crates.io/crates/std_detect -[std_detect_docs_badge]: https://docs.rs/std_detect/badge.svg -[std_detect_docs_link]: https://docs.rs/std_detect/