Skip to content

Commit 0897015

Browse files
committed
Fix MSRV build
Criterion started pulling in new versions of `rayon` that have a more recent MSRV than we do.
1 parent 573ed78 commit 0897015

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ serde = { version = "1.0.197", features = ["derive"] }
5353
serde_json = "1.0.115"
5454
blink-alloc = { version = "=0.3.1" }
5555

56+
# Make sure that criterion pulls in a rayon that supports our MSRV.
57+
rayon = { version = "=1.10.0" }
58+
rayon-core = { version = "=1.12.1" }
59+
5660
[features]
5761
default = []
5862
collections = []

0 commit comments

Comments
 (0)