Skip to content

Commit 5117a9e

Browse files
bors[bot]kornelski
andcommitted
641: Require rayon-core ^1.4.1 r=cuviper a=kornelski I'm trying to make my crates work with `cargo -Z minimal-versions` to ensure that versions specified in my Cargo.toml are actual versions that work with my crate. The problem is, it's not true for Rayon's dependencies: rayon 1.0.3 uses rayon-core 1.4.0, which uses rand 0.3.12, which uses advapi32-sys 0.1.2, which uses winapi 0.0.1, which isn't compatible with Rust 1.0. The problem has been fixed in rayon-core 1.4.1, so that should be the minimal version used by rayon. Co-authored-by: Kornel <[email protected]>
2 parents 56bf14e + 5256543 commit 5117a9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ members = ["rayon-demo", "rayon-core", "rayon-futures"]
1919
exclude = ["ci"]
2020

2121
[dependencies]
22-
rayon-core = { version = "1.4", path = "rayon-core" }
22+
rayon-core = { version = "1.4.1", path = "rayon-core" }
2323
crossbeam-deque = "0.2.0"
2424

2525
# This is a public dependency!

0 commit comments

Comments
 (0)