Skip to content

Commit

Permalink
Merge pull request rust-lang#153 from rust-lang/death-of-the-author
Browse files Browse the repository at this point in the history
Rename to portable-simd and remove other names
  • Loading branch information
calebzulawski authored Aug 6, 2021
2 parents c36d17d + 2acf204 commit 50eb35e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# stdsimd - Rust's standard library portable SIMD API
[![Build Status](https://travis-ci.com/rust-lang/stdsimd.svg?branch=master)](https://travis-ci.com/rust-lang/stdsimd)
# The Rust standard library's portable SIMD API
[![Build Status](https://travis-ci.com/rust-lang/portable-simd.svg?branch=master)](https://travis-ci.com/rust-lang/portable-simd)

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

and finally write this in `src/main.rs`:
Expand Down Expand Up @@ -66,4 +66,4 @@ The `mask` types are "truthy" values, but they use the number of bits in their n
[simd-guide]: ./beginners-guide.md
[zulip-project-portable-simd]: https://rust-lang.zulipchat.com/#narrow/stream/257879-project-portable-simd
[stdarch]: https://github.com/rust-lang/stdarch
[docs]: https://rust-lang.github.io/stdsimd/core_simd
[docs]: https://rust-lang.github.io/portable-simd/core_simd
5 changes: 2 additions & 3 deletions crates/core_simd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[package]
name = "core_simd"
version = "0.1.0"
authors = ["Caleb Zulawski <[email protected]>"]
edition = "2018"
homepage = "https://github.com/rust-lang/stdsimd"
repository = "https://github.com/rust-lang/stdsimd"
homepage = "https://github.com/rust-lang/portable-simd"
repository = "https://github.com/rust-lang/portable-simd"
keywords = ["core", "simd", "intrinsics"]
categories = ["hardware-support", "no-std"]
license = "MIT OR Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion crates/test_helpers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "test_helpers"
version = "0.1.0"
authors = ["Caleb Zulawski <[email protected]>"]
edition = "2018"
publish = false

Expand Down

0 comments on commit 50eb35e

Please sign in to comment.