From 9855f379306def0198cb1020dede60afb47322c2 Mon Sep 17 00:00:00 2001 From: Vinzent Steinberg Date: Fri, 26 Apr 2024 14:22:00 +0200 Subject: [PATCH] Pin rayon and rayon-core to support MSRV 1.61 --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b983a122..0ec32ee5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,4 +76,5 @@ zerocopy = { version = "=0.8.0-alpha.6", default-features = false, features = [" rand_pcg = { path = "rand_pcg", version = "=0.9.0-alpha.1" } # Only to test serde1 bincode = "1.2.1" -rayon = "1.5.3" +rayon = "=1.7" +rayon-core = "=1.11"