blob: 17cc17afd4b14911139514d3799747c347ecb288 [file] [log] [blame]
Jeff Vander Stoepaa840b62021-10-19 10:09:02 +02001[package]
2name = "quickcheck"
3version = "1.0.3" #:version
4authors = ["Andrew Gallant <jamslam@gmail.com>"]
5description = "Automatic property based testing with shrinking."
6documentation = "https://docs.rs/quickcheck"
7homepage = "https://github.com/BurntSushi/quickcheck"
8repository = "https://github.com/BurntSushi/quickcheck"
9readme = "README.md"
10keywords = ["testing", "quickcheck", "property", "shrinking", "fuzz"]
11categories = ["development-tools::testing"]
12license = "Unlicense/MIT"
13exclude = ["/.travis.yml", "/Makefile", "/ctags.rust", "/session.vim"]
14edition = "2018"
15
16[workspace]
17members = ["quickcheck_macros"]
18
19[features]
20default = ["regex", "use_logging"]
21use_logging = ["log", "env_logger"]
22regex = ["env_logger/regex"]
23
24[lib]
25name = "quickcheck"
26
27[dependencies]
28env_logger = { version = "0.8.2", default-features = false, optional = true }
29log = { version = "0.4", optional = true }
30rand = { version = "0.8", default-features = false, features = ["getrandom", "small_rng"] }