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"

0 commit comments

Comments
 (0)