Updating proptest to version 4.1 and quickcheck to 6.0.0. This is a breaking change wrt. public dependencies, so therefore the major version bump.
- Loosened bounds on
QCValueTree
. This should have zero effect on client code.
- Removed
impl Clone for QCValueTree<Vec<u32>>
from public API, this was previously noted as forever unstable, but it was moved tomod tests
to make this clearer and not subject to accidental breakage.
- Fixed README.
- More documentation fixes.
- Documentation fixes.
This is the initial version. This version provides:
-
from_qc::<T>()
- a function to generate aStrategy
so long asT
implementsquickcheck::Arbitrary
. -
from_qc_sized::<T>()
- allows the user to control the size of inputs in quickcheck. -
QCStrategy
, a proptestStrategy
produced byfrom_qc
andfrom_qc_sized
. -
QCValueTree
, the proptestValueTree
used forQCStrategy
.