quickcheck 1.1.0

Automatic property based testing with shrinking.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85.0"
name = "quickcheck"
version = "1.1.0"
authors = ["Andrew Gallant <jamslam@gmail.com>"]
build = false
exclude = [
    "/Makefile",
    "/ctags.rust",
    "/session.vim",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automatic property based testing with shrinking."
homepage = "https://github.com/BurntSushi/quickcheck"
documentation = "https://docs.rs/quickcheck"
readme = "README.md"
keywords = [
    "testing",
    "quickcheck",
    "property",
    "shrinking",
    "fuzz",
]
categories = ["development-tools::testing"]
license = "Unlicense OR MIT"
repository = "https://github.com/BurntSushi/quickcheck"

[features]
default = [
    "regex",
    "use_logging",
]
regex = ["env_logger/regex"]
use_logging = [
    "log",
    "env_logger",
]

[lib]
name = "quickcheck"
path = "src/lib.rs"

[[example]]
name = "btree_set_range"
path = "examples/btree_set_range.rs"

[[example]]
name = "out_of_bounds"
path = "examples/out_of_bounds.rs"

[[example]]
name = "reverse"
path = "examples/reverse.rs"

[[example]]
name = "reverse_single"
path = "examples/reverse_single.rs"

[[example]]
name = "sieve"
path = "examples/sieve.rs"

[[example]]
name = "sort"
path = "examples/sort.rs"

[dependencies.env_logger]
version = "0.11"
optional = true
default-features = false

[dependencies.log]
version = "0.4"
optional = true

[dependencies.rand]
version = "0.10"
features = ["sys_rng"]
default-features = false