[package]
edition = "2021"
rust-version = "1.83"
name = "checkito"
version = "5.0.0"
authors = ["Magicolo <magicololand@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A safe, efficient and simple QuickCheck-inspired library to generate shrinkable random data mainly oriented towards generative/property/exploratory testing."
documentation = "https://docs.rs/checkito/latest/checkito/"
readme = "README.md"
keywords = [
"property",
"testing",
"quickcheck",
"fuzz",
"hypothesis",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/Magicolo/checkito"
[badges.github]
repository = "Magicolo/checkito"
workflow = "test"
[features]
asynchronous = [
"futures-lite/std",
"checkito_macro/asynchronous",
]
check = ["checkito_macro/check"]
constant = ["checkito_macro/constant"]
default = [
"check",
"regex",
"constant",
"asynchronous",
]
regex = [
"regex-syntax/unicode",
"checkito_macro/regex",
]
[lib]
name = "checkito"
path = "src/lib.rs"
[[example]]
name = "cheat"
path = "examples/cheat.rs"
[[example]]
name = "json"
path = "examples/json.rs"
[[test]]
name = "any"
path = "tests/any.rs"
[[test]]
name = "asynchronous"
path = "tests/asynchronous.rs"
[[test]]
name = "boolean"
path = "tests/boolean.rs"
[[test]]
name = "boxed"
path = "tests/boxed.rs"
[[test]]
name = "cardinality"
path = "tests/cardinality.rs"
[[test]]
name = "character"
path = "tests/character.rs"
[[test]]
name = "check"
path = "tests/check.rs"
[[test]]
name = "collect"
path = "tests/collect.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "constant"
path = "tests/constant.rs"
[[test]]
name = "exhaustive"
path = "tests/exhaustive.rs"
[[test]]
name = "filter"
path = "tests/filter.rs"
[[test]]
name = "number"
path = "tests/number.rs"
[[test]]
name = "prelude"
path = "tests/prelude.rs"
[[test]]
name = "regex"
path = "tests/regex.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[[test]]
name = "sample"
path = "tests/sample.rs"
[[test]]
name = "shrink"
path = "tests/shrink.rs"
[[test]]
name = "string"
path = "tests/string.rs"
[dependencies.checkito_macro]
version = "0.5.8"
optional = true
default-features = false
[dependencies.fastrand]
version = "2.3"
[dependencies.futures-lite]
version = "2.6"
optional = true
default-features = false
[dependencies.orn]
version = "1.0"
features = [
"or16",
"iter",
]
default-features = false
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.ref-cast]
version = "1.0"
[dependencies.regex-syntax]
version = "0.8"
optional = true
default-features = false
[dev-dependencies.regex]
version = "1.12"
default-features = false