Skip to content

Commit 93a6cb3

Browse files
Publish packed_simd again
1 parent e4ec7ce commit 93a6cb3

File tree

17 files changed

+23
-23
lines changed

17 files changed

+23
-23
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "packed_simd_2"
2+
name = "packed_simd"
33
version = "0.3.8"
44
description = "Portable Packed SIMD vectors"
55
documentation = "https://docs.rs/crate/packed_simd/"

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If you need to continue to use the crate, we have published a "next version" und
88

99
Adjust your `[dependencies]` section of `Cargo.toml` to be the following:
1010
```toml
11-
packed_simd = { version = "0.3.8", package = "packed_simd_2" }
11+
packed_simd = { version = "0.3.8", package = "packed_simd" }
1212
```
1313

1414
# `Simd<[T; N]>`
@@ -146,11 +146,11 @@ dual licensed as above, without any additional terms or conditions.
146146
[Travis-CI Status]: https://travis-ci.com/rust-lang/packed_simd.svg?branch=master
147147
[appveyor]: https://ci.appveyor.com/project/gnzlbg/packed-simd
148148
[Appveyor Status]: https://ci.appveyor.com/api/projects/status/hd7v9dvr442hgdix?svg=true
149-
[Latest Version]: https://img.shields.io/crates/v/packed_simd_2.svg
150-
[crates.io]: https://crates.io/crates/packed_simd_2
151-
[docs]: https://docs.rs/packed_simd_2/badge.svg
152-
[docs.rs]: https://docs.rs/packed_simd_2
153-
[master_docs]: https://rust-lang-nursery.github.io/packed_simd/packed_simd_2/
149+
[Latest Version]: https://img.shields.io/crates/v/packed_simd.svg
150+
[crates.io]: https://crates.io/crates/packed_simd
151+
[docs]: https://docs.rs/packed_simd/badge.svg
152+
[docs.rs]: https://docs.rs/packed_simd
153+
[master_docs]: https://rust-lang-nursery.github.io/packed_simd/packed_simd/
154154
[perf_guide]: https://rust-lang-nursery.github.io/packed_simd/perf-guide/
155155
[rfc2366]: https://github.com/rust-lang/rfcs/pull/2366
156156
[ISPC]: https://ispc.github.io/

examples/aobench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ path = "src/lib.rs"
1717
structopt = "^0.3"
1818
failure = "^0.1"
1919
png = "^0.15"
20-
packed_simd = { package = "packed_simd_2", path = "../.." }
20+
packed_simd = { package = "packed_simd", path = "../.." }
2121
rayon = "^1.0"
2222
time = "^0.1"
2323
cfg-if = "^0.1"

examples/dot_product/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Gonzalo Brito Gadeschi <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { package = "packed_simd_2", path = "../.." }
8+
packed_simd = { package = "packed_simd", path = "../.." }
99

1010
[lib]
1111
name = "dot_product_lib"

examples/fannkuch_redux/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["gnzlbg <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { package = "packed_simd_2", path = "../.." }
8+
packed_simd = { package = "packed_simd", path = "../.." }
99

1010
[[bin]]
1111
name = "fannkuch_redux"

examples/mandelbrot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build = "build.rs"
66
edition = "2018"
77

88
[dependencies]
9-
packed_simd = { package = "packed_simd_2", path = "../.." }
9+
packed_simd = { package = "packed_simd", path = "../.." }
1010
rayon = "^1.0"
1111
ispc = { version = "^1.0.4", optional = true }
1212
structopt = { version = "0.3.0", features = ["color"] }

examples/matrix_inverse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Gonzalo Brito Gadeschi <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { package = "packed_simd_2", path = "../.." }
8+
packed_simd = { package = "packed_simd", path = "../.." }
99

1010
[lib]
1111
name = "matrix_inverse_lib"

examples/nbody/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Gonzalo Brito Gadeschi <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { package = "packed_simd_2", path = "../.." }
8+
packed_simd = { package = "packed_simd", path = "../.." }
99

1010
[[bin]]
1111
name = "nbody"

examples/options_pricing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["gnzlbg <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { package = "packed_simd_2", path = "../.." }
8+
packed_simd = { package = "packed_simd", path = "../.." }
99
time = "^0.1"
1010
rayon = "^1.0"
1111
ispc = { version = "^1.0.4", optional = true }

examples/slice_sum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "slice_sum"
99
path = "src/main.rs"
1010

1111
[dependencies]
12-
packed_simd = { package = "packed_simd_2", path = "../.." }
12+
packed_simd = { package = "packed_simd", path = "../.." }
1313
rayon = "^1.0"
1414
time = "^0.1"
1515
rand = "0.7.0"

examples/spectral_norm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["gnzlbg <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { package = "packed_simd_2", path = "../.." }
8+
packed_simd = { package = "packed_simd", path = "../.." }
99

1010
[[bin]]
1111
name = "spectral_norm"

examples/stencil/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["gnzlbg <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { package = "packed_simd_2", path = "../.." }
8+
packed_simd = { package = "packed_simd", path = "../.." }
99
time = "^0.1"
1010
rayon = "^1.0"
1111
ispc = { version = "^1.0.4", optional = true }

examples/triangle_xform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Gonzalo Brito Gadeschi <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { package = "packed_simd_2", path = "../.." }
8+
packed_simd = { package = "packed_simd", path = "../.." }
99

1010
[dev-dependencies]
1111
rand = "0.7.0"

micro_benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ autobenches = false
66
edition = "2018"
77

88
[dev-dependencies]
9-
packed_simd = { package = "packed_simd_2", path = ".." }
9+
packed_simd = { package = "packed_simd", path = ".." }
1010
paste = "0.1.3"
1111
criterion = "0.3"
1212

src/api/shuffle.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/// Shuffling elements of two vectors:
2828
///
2929
/// ```
30-
/// # use packed_simd_2::*;
30+
/// # use packed_simd::*;
3131
/// # fn main() {
3232
/// // Shuffle allows reordering the elements:
3333
/// let x = i32x4::new(1, 2, 3, 4);
@@ -49,7 +49,7 @@
4949
/// Shuffling elements of one vector:
5050
///
5151
/// ```
52-
/// # use packed_simd_2::*;
52+
/// # use packed_simd::*;
5353
/// # fn main() {
5454
/// // Shuffle allows reordering the elements of a vector:
5555
/// let x = i32x4::new(1, 2, 3, 4);

tests/endianness.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[cfg(target_arch = "wasm32")]
22
use wasm_bindgen_test::*;
33

4-
use packed_simd_2::*;
4+
use packed_simd::*;
55
use std::{mem, slice};
66

77
#[cfg_attr(not(target_arch = "wasm32"), test)]

verify/verify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2018"
66

77
[dev-dependencies]
88
stdarch-test = { git = "https://github.com/rust-lang/stdarch.git" }
9-
packed_simd = { package = "packed_simd_2", path = "../.." }
9+
packed_simd = { package = "packed_simd", path = "../.." }
1010
cfg-if = "^0.1"
1111
paste = "^0.1.3"

0 commit comments

Comments
 (0)