[package]
name = "quickcheck"
version = "0.5.1"
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "Automatic property based testing with shrinking."
homepage = "https://github.com/BurntSushi/quickcheck"
documentation = "http://burntsushi.net/rustdoc/quickcheck/"
readme = "README.md"
keywords = ["testing", "quickcheck", "property", "shrinking", "fuzz"]
categories = ["development-tools::testing"]
license = "Unlicense/MIT"
repository = "https://github.com/BurntSushi/quickcheck"
[lib]
name = "quickcheck"
[dependencies.env_logger]
version = "0.4"
optional = true
[dependencies.log]
version = "0.3"
optional = true
[dependencies.rand]
version = "0.4"
[features]
default = ["use_logging"]
i128 = ["rand/i128_support"]
unstable = []
use_logging = ["log", "env_logger"]