Skip to content

Commit fc1792d

Browse files
Fix CI again (#302)
* Fix imports * One last toml fix * Fix doc tests
1 parent ecf9a21 commit fc1792d

File tree

17 files changed

+25
-29
lines changed

17 files changed

+25
-29
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.3.4"
44
authors = ["Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>", "Jubilee Young <workingjubilee@gmail.com>"]
55
description = "Portable Packed SIMD vectors"
66
documentation = "https://docs.rs/crate/packed_simd/"
7-
homepage = "https://github.com/rust-lang-nursery/packed_simd"
8-
repository = "https://github.com/rust-lang-nursery/packed_simd"
7+
homepage = "https://github.com/rust-lang/packed_simd"
8+
repository = "https://github.com/rust-lang/packed_simd"
99
keywords = ["simd", "vector", "portability"]
1010
categories = ["hardware-support", "concurrency", "no-std", "data-structures"]
1111
license = "MIT/Apache-2.0"

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 = { path = "../.." }
20+
packed_simd = { package = "packed_simd_2", 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 <gonzalobg88@gmail.com>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { path = "../.." }
8+
packed_simd = { package = "packed_simd_2", 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 <gonzalobg88@gmail.com>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { path = "../.." }
8+
packed_simd = { package = "packed_simd_2", 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 = { path = "../.." }
9+
packed_simd = { package = "packed_simd_2", 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 <gonzalobg88@gmail.com>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { path = "../.." }
8+
packed_simd = { package = "packed_simd_2", 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 <gonzalobg88@gmail.com>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { path = "../.." }
8+
packed_simd = { package = "packed_simd_2", 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 <gonzalobg88@gmail.com>"]
55
edition = "2018"
66

77
[dependencies]
8-
packed_simd = { path = "../.." }
8+
packed_simd = { package = "packed_simd_2", 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 = { path = "../.." }
12+
packed_simd = { package = "packed_simd_2", 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 <gonzalobg88@gmail.com>"]
55
edition = "2018"
66

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

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

0 commit comments

Comments
 (0)