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.
This commit is contained in:
Crozet Sébastien 2021-02-25 11:00:48 +01:00
parent 66b9185ec1
commit 4e4eeb2641
1 changed files with 0 additions and 5 deletions

View File

@ -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]