1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies 7# 8# If you believe there's an error in this file please file an 9# issue against the rust-lang/cargo repository. If you're 10# editing this file be aware that the upstream Cargo.toml 11# will likely look very different (and much more reasonable) 12 13[package] 14edition = "2018" 15name = "quickcheck" 16version = "1.0.3" 17authors = ["Andrew Gallant <[email protected]>"] 18exclude = ["/.travis.yml", "/Makefile", "/ctags.rust", "/session.vim"] 19description = "Automatic property based testing with shrinking." 20homepage = "https://github.com/BurntSushi/quickcheck" 21documentation = "https://docs.rs/quickcheck" 22readme = "README.md" 23keywords = ["testing", "quickcheck", "property", "shrinking", "fuzz"] 24categories = ["development-tools::testing"] 25license = "Unlicense/MIT" 26repository = "https://github.com/BurntSushi/quickcheck" 27 28[lib] 29name = "quickcheck" 30[dependencies.env_logger] 31version = "0.8.2" 32optional = true 33default-features = false 34 35[dependencies.log] 36version = "0.4" 37optional = true 38 39[dependencies.rand] 40version = "0.8" 41features = ["getrandom", "small_rng"] 42default-features = false 43 44[features] 45default = ["regex", "use_logging"] 46regex = ["env_logger/regex"] 47use_logging = ["log", "env_logger"] 48