1
- # Contributing to stdsimd
1
+ # Contributing to stdarch
2
2
3
- The ` stdsimd ` crate is more than willing to accept contributions! First you'll
3
+ The ` stdarch ` crate is more than willing to accept contributions! First you'll
4
4
probably want to check out the repository and make sure that tests pass for you:
5
5
6
6
```
7
- $ git clone https://github.com/rust-lang-nursery/stdsimd
8
- $ cd stdsimd
7
+ $ git clone https://github.com/rust-lang/stdarch
8
+ $ cd stdarch
9
9
$ cargo +nightly test
10
10
```
11
11
@@ -29,7 +29,7 @@ around! Feel free to ping either @BurntSushi or @alexcrichton with questions.
29
29
30
30
[ gitter ] : https://gitter.im/rust-impl-period/WG-libs-simd
31
31
32
- # How to write examples for stdsimd intrinsics
32
+ # How to write examples for stdarch intrinsics
33
33
34
34
There are a few features that must be enabled for the given intrinsic to work
35
35
properly and the example must only be run by ` cargo test --doc ` when the feature
@@ -44,9 +44,9 @@ to ensure your example works as expected.
44
44
/// # // We need target_feature for the intrinsic to work
45
45
/// # #![feature(target_feature)]
46
46
/// #
47
- /// # // rustdoc by default uses `extern crate stdsimd `, but we need the
47
+ /// # // rustdoc by default uses `extern crate stdarch `, but we need the
48
48
/// # // `#[macro_use]`
49
- /// # #[macro_use] extern crate stdsimd ;
49
+ /// # #[macro_use] extern crate stdarch ;
50
50
/// #
51
51
/// # // The real main function
52
52
/// # fn main() {
@@ -69,12 +69,12 @@ to ensure your example works as expected.
69
69
If some of the above syntax does not look familiar, the [ Documentation as tests] section
70
70
of the [ Rust Book] describes the ` rustdoc ` syntax quite well. As always, feel free
71
71
to [ join us on gitter] [ gitter ] and ask us if you hit any snags, and thank you for helping
72
- to improve the documentation of ` stdsimd ` !
72
+ to improve the documentation of ` stdarch ` !
73
73
74
- [ new ] : https://github.com/rust-lang-nursery/stdsimd /issues/new
75
- [ issues ] : https://github.com/rust-lang-nursery/stdsimd /issues
76
- [ help ] : https://github.com/rust-lang-nursery/stdsimd /issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22
77
- [ impl ] : https://github.com/rust-lang-nursery/stdsimd /issues?q=is%3Aissue+is%3Aopen+label%3Aimpl-period
78
- [ vendor ] : https://github.com/rust-lang-nursery/stdsimd /issues/40
74
+ [ new ] : https://github.com/rust-lang/stdarch /issues/new
75
+ [ issues ] : https://github.com/rust-lang/stdarch /issues
76
+ [ help ] : https://github.com/rust-lang/stdarch /issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22
77
+ [ impl ] : https://github.com/rust-lang/stdarch /issues?q=is%3Aissue+is%3Aopen+label%3Aimpl-period
78
+ [ vendor ] : https://github.com/rust-lang/stdarch /issues/40
79
79
[ Documentation as tests ] : https://doc.rust-lang.org/book/first-edition/documentation.html#documentation-as-tests
80
80
[ Rust Book ] : https://doc.rust-lang.org/book/first-edition
0 commit comments