Skip to content

Commit 62d5e7e

Browse files
m-ou-seAmanieu
authored andcommitted
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.
1 parent 8fbbacd commit 62d5e7e

File tree

5 files changed

+2
-42
lines changed

5 files changed

+2
-42
lines changed

README.md

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,11 @@ stdarch - Rust's standard library SIMD components
88

99
This repository contains two main crates:
1010

11-
* [![core_arch_crate_badge]][core_arch_crate_link]
12-
[![core_arch_docs_badge]][core_arch_docs_link]
13-
[`core_arch`](crates/core_arch/README.md) implements `core::arch` - Rust's
11+
* [`core_arch`](crates/core_arch/README.md) implements `core::arch` - Rust's
1412
core library architecture-specific intrinsics, and
1513

16-
* [![std_detect_crate_badge]][std_detect_crate_link]
17-
[![std_detect_docs_badge]][std_detect_docs_link]
18-
[`std_detect`](crates/std_detect/README.md) implements `std::detect` - Rust's
14+
* [`std_detect`](crates/std_detect/README.md) implements `std::detect` - Rust's
1915
standard library run-time CPU feature detection.
2016

2117
The `std::simd` component now lives in the
2218
[`packed_simd`](https://github.com/rust-lang-nursery/packed_simd) crate.
23-
24-
# How to do a release
25-
26-
To do a release of the `core_arch` and `std_detect` crates,
27-
28-
* bump up the version appropriately,
29-
* comment out the `dev-dependencies` in their `Cargo.toml` files (due to
30-
https://github.com/rust-lang/cargo/issues/4242),
31-
* publish the crates.
32-
33-
[core_arch_crate_badge]: https://img.shields.io/crates/v/core_arch.svg
34-
[core_arch_crate_link]: https://crates.io/crates/core_arch
35-
[core_arch_docs_badge]: https://docs.rs/core_arch/badge.svg
36-
[core_arch_docs_link]: https://docs.rs/core_arch/
37-
[std_detect_crate_badge]: https://img.shields.io/crates/v/std_detect.svg
38-
[std_detect_crate_link]: https://crates.io/crates/std_detect
39-
[std_detect_docs_badge]: https://docs.rs/std_detect/badge.svg
40-
[std_detect_docs_link]: https://docs.rs/std_detect/

crates/core_arch/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ authors = [
77
"Gonzalo Brito Gadeschi <[email protected]>",
88
]
99
description = "`core::arch` - Rust's core library architecture-specific intrinsics."
10-
documentation = "https://docs.rs/core_arch"
1110
homepage = "https://github.com/rust-lang/stdarch"
1211
repository = "https://github.com/rust-lang/stdarch"
1312
readme = "README.md"

crates/core_arch/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
`core::arch` - Rust's core library architecture-specific intrinsics
22
=======
33

4-
[![core_arch_crate_badge]][core_arch_crate_link] [![core_arch_docs_badge]][core_arch_docs_link]
5-
6-
74
The `core::arch` module implements architecture-dependent intrinsics (e.g. SIMD).
85

96
# Usage
@@ -61,8 +58,3 @@ See LICENSE-APACHE, and LICENSE-MIT for details.
6158
Unless you explicitly state otherwise, any contribution intentionally submitted
6259
for inclusion in `core_arch` by you, as defined in the Apache-2.0 license,
6360
shall be dual licensed as above, without any additional terms or conditions.
64-
65-
[core_arch_crate_badge]: https://img.shields.io/crates/v/core_arch.svg
66-
[core_arch_crate_link]: https://crates.io/crates/core_arch
67-
[core_arch_docs_badge]: https://docs.rs/core_arch/badge.svg
68-
[core_arch_docs_link]: https://docs.rs/core_arch/

crates/std_detect/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ authors = [
77
"Gonzalo Brito Gadeschi <[email protected]>",
88
]
99
description = "`std::detect` - Rust's standard library run-time CPU feature detection."
10-
documentation = "https://docs.rs/std_detect"
1110
homepage = "https://github.com/rust-lang/stdarch"
1211
repository = "https://github.com/rust-lang/stdarch"
1312
readme = "README.md"

crates/std_detect/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
`std::detect` - Rust's standard library run-time CPU feature detection
22
=======
33

4-
[![std_detect_crate_badge]][std_detect_crate_link] [![std_detect_docs_badge]][std_detect_docs_link]
5-
6-
74
The private `std::detect` module implements run-time feature detection in Rust's
85
standard library. This allows detecting whether the CPU the binary runs on
96
supports certain features, like SIMD instructions.
@@ -74,8 +71,3 @@ at your option.
7471
Unless you explicitly state otherwise, any contribution intentionally submitted
7572
for inclusion in `std_detect` by you, as defined in the Apache-2.0 license,
7673
shall be dual licensed as above, without any additional terms or conditions.
77-
78-
[std_detect_crate_badge]: https://img.shields.io/crates/v/std_detect.svg
79-
[std_detect_crate_link]: https://crates.io/crates/std_detect
80-
[std_detect_docs_badge]: https://docs.rs/std_detect/badge.svg
81-
[std_detect_docs_link]: https://docs.rs/std_detect/

0 commit comments

Comments
 (0)