From 4e4eeb264108279c1bd387f020773ffacfc10a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crozet=20S=C3=A9bastien?= Date: Thu, 25 Feb 2021 11:00:48 +0100 Subject: [PATCH] Don't pin the proptest version when running tests: this breaks all no-std builds. This is extremely unfortunate, but we cannot pin the version of proptest because of the Cargo bug #4866 will cause a breakage of #[no-std] builds. --- Cargo.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9d689dac..c281e5e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,11 +72,6 @@ rand_isaac = "0.2" # For matrix comparison macro matrixcompare = "0.2.0" - -# Make sure that we use a specific version of proptest for tests. The reason is that we use a deterministic -# RNG for certain tests. However, different versions of proptest may give different sequences of numbers, -# which may cause more brittle tests (although ideally they should take enough samples for it not to matter). -proptest = { version = "=0.10.1" } itertools = "0.9" [workspace]