quickcheck 0.6.2

Automatic property based testing with shrinking.
Documentation
[package]
name = "quickcheck"
version = "0.6.2"  #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "Automatic property based testing with shrinking."
documentation = "http://burntsushi.net/rustdoc/quickcheck/"
homepage = "https://github.com/BurntSushi/quickcheck"
repository = "https://github.com/BurntSushi/quickcheck"
readme = "README.md"
keywords = ["testing", "quickcheck", "property", "shrinking", "fuzz"]
categories = ["development-tools::testing"]
license = "Unlicense/MIT"

[features]
default = ["regex", "use_logging"]
unstable = []
use_logging = ["log", "env_logger"]
i128 = ["rand/i128_support"]
regex = ["env_logger/regex"]

[lib]
name = "quickcheck"

[dependencies]
env_logger = { version = "0.5", default-features = false, optional = true }
log = { version = "0.4", optional = true }
rand = "0.4"