blob: ef4276c1d2fb6b82760a1709cceefb3739e84564 [file] [log] [blame]
# 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 = "2018"
rust-version = "1.64"
name = "proptest"
version = "1.3.1"
authors = ["Jason Lingle"]
exclude = [
"/gen-*.sh",
"/readme-*.md",
]
description = """
Hypothesis-like property-based testing and shrinking.
"""
homepage = "https://proptest-rs.github.io/proptest/proptest/index.html"
documentation = "https://docs.rs/proptest/latest/proptest/"
readme = "README.md"
keywords = [
"property",
"testing",
"quickcheck",
"fuzz",
"hypothesis",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/proptest-rs/proptest"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[dependencies.bit-set]
version = "0.5.2"
optional = true
[dependencies.bit-vec]
version = "0.6.0"
optional = true
[dependencies.bitflags]
version = "2"
[dependencies.lazy_static]
version = "1.2"
optional = true
[dependencies.num-traits]
version = "0.2.15"
features = ["libm"]
default-features = false
[dependencies.rand]
version = "0.8"
features = ["alloc"]
default-features = false
[dependencies.rand_chacha]
version = "0.3"
default-features = false
[dependencies.rand_xorshift]
version = "0.3"
[dependencies.regex-syntax]
version = "0.7"
optional = true
[dependencies.rusty-fork]
version = "0.3.0"
optional = true
default-features = false
[dependencies.tempfile]
version = "3.0"
optional = true
[dependencies.unarray]
version = "0.1.4"
[dependencies.x86]
version = "0.52.0"
optional = true
[dev-dependencies.regex]
version = "1"
[features]
alloc = []
atomic64bit = []
bit-set = [
"dep:bit-set",
"dep:bit-vec",
]
default = [
"std",
"fork",
"timeout",
"bit-set",
]
default-code-coverage = [
"std",
"fork",
"timeout",
"bit-set",
]
fork = [
"std",
"rusty-fork",
"tempfile",
]
hardware-rng = ["x86"]
std = [
"rand/std",
"lazy_static",
"regex-syntax",
"num-traits/std",
]
timeout = [
"fork",
"rusty-fork/timeout",
]
unstable = []