diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2021-08-05 20:49:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-05 20:49:45 -0400 |
| commit | 50eb35eb3b87c37876cb925c5ac3428ef6fa080a (patch) | |
| tree | ea308e582d6515c54835b82e1b9df72a5ce2852d | |
| parent | c36d17de4d87f5baba95b13d2b1ec70e652f0fe4 (diff) | |
| parent | 2acf204b09740f06dfb5efe8d1f45ceeb4ca91df (diff) | |
| download | rust-50eb35eb3b87c37876cb925c5ac3428ef6fa080a.tar.gz rust-50eb35eb3b87c37876cb925c5ac3428ef6fa080a.zip | |
Merge pull request #153 from rust-lang/death-of-the-author
Rename to portable-simd and remove other names
| -rw-r--r-- | README.md | 8 | ||||
| -rw-r--r-- | crates/core_simd/Cargo.toml | 5 | ||||
| -rw-r--r-- | crates/test_helpers/Cargo.toml | 1 |
3 files changed, 6 insertions, 8 deletions
diff --git a/README.md b/README.md index ee28297668e..da536a4d6f2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# stdsimd - Rust's standard library portable SIMD API -[](https://travis-ci.com/rust-lang/stdsimd) +# The Rust standard library's portable SIMD API +[](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. @@ -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`: @@ -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 diff --git a/crates/core_simd/Cargo.toml b/crates/core_simd/Cargo.toml index 764b199d5bf..c45dde2dbd2 100644 --- a/crates/core_simd/Cargo.toml +++ b/crates/core_simd/Cargo.toml @@ -1,10 +1,9 @@ [package] name = "core_simd" version = "0.1.0" -authors = ["Caleb Zulawski <caleb.zulawski@gmail.com>"] 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" diff --git a/crates/test_helpers/Cargo.toml b/crates/test_helpers/Cargo.toml index c9f6397b23b..e38b223d6c9 100644 --- a/crates/test_helpers/Cargo.toml +++ b/crates/test_helpers/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "test_helpers" version = "0.1.0" -authors = ["Caleb Zulawski <caleb.zulawski@gmail.com>"] edition = "2018" publish = false |
