Install quickcheck
masterAdd quickcheck to your Cargo.toml dependencies. If you only need it for testing, add it to [dev-dependencies] instead.
To use the #[quickcheck] attribute, you must also include quickcheck_macros in your [dev-dependencies].
# For production use
[dependencies]
quickcheck = "1"
# For testing only
[dev-dependencies]
quickcheck = "1"
quickcheck_macros = "1"