Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 50eb35e

Browse files
Merge pull request rust-lang#153 from rust-lang/death-of-the-author
Rename to portable-simd and remove other names
2 parents c36d17d + 2acf204 commit 50eb35e

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# stdsimd - Rust's standard library portable SIMD API
2-
[![Build Status](https://travis-ci.com/rust-lang/stdsimd.svg?branch=master)](https://travis-ci.com/rust-lang/stdsimd)
1+
# The Rust standard library's portable SIMD API
2+
[![Build Status](https://travis-ci.com/rust-lang/portable-simd.svg?branch=master)](https://travis-ci.com/rust-lang/portable-simd)
33

44
Code repository for the [Portable SIMD Project Group](https://github.com/rust-lang/project-portable-simd).
55
Please refer to [CONTRIBUTING.md](./CONTRIBUTING.md) for our contributing guidelines.
@@ -31,7 +31,7 @@ name = "hellosimd"
3131
version = "0.1.0"
3232
edition = "2018"
3333
[dependencies]
34-
core_simd = { git = "https://github.com/rust-lang/stdsimd" }
34+
core_simd = { git = "https://github.com/rust-lang/portable-simd" }
3535
```
3636

3737
and finally write this in `src/main.rs`:
@@ -66,4 +66,4 @@ The `mask` types are "truthy" values, but they use the number of bits in their n
6666
[simd-guide]: ./beginners-guide.md
6767
[zulip-project-portable-simd]: https://rust-lang.zulipchat.com/#narrow/stream/257879-project-portable-simd
6868
[stdarch]: https://github.com/rust-lang/stdarch
69-
[docs]: https://rust-lang.github.io/stdsimd/core_simd
69+
[docs]: https://rust-lang.github.io/portable-simd/core_simd

crates/core_simd/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[package]
22
name = "core_simd"
33
version = "0.1.0"
4-
authors = ["Caleb Zulawski <[email protected]>"]
54
edition = "2018"
6-
homepage = "https://github.com/rust-lang/stdsimd"
7-
repository = "https://github.com/rust-lang/stdsimd"
5+
homepage = "https://github.com/rust-lang/portable-simd"
6+
repository = "https://github.com/rust-lang/portable-simd"
87
keywords = ["core", "simd", "intrinsics"]
98
categories = ["hardware-support", "no-std"]
109
license = "MIT OR Apache-2.0"

crates/test_helpers/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "test_helpers"
33
version = "0.1.0"
4-
authors = ["Caleb Zulawski <[email protected]>"]
54
edition = "2018"
65
publish = false
76

0 commit comments

Comments
 (0)