[package]
edition = "2021"
rust-version = "1.82.0"
name = "test-strategy"
version = "0.4.4"
authors = ["frozenlib"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macro to easily write higher-order strategies in proptest."
documentation = "https://docs.rs/test-strategy/"
readme = "README.md"
keywords = [
"macro",
"testing",
"proptest",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/frozenlib/test-strategy"
[lib]
name = "test_strategy"
path = "src/lib.rs"
proc-macro = true
[[example]]
name = "in_not_cfg_test"
path = "examples/in_not_cfg_test.rs"
[[test]]
name = "arbitrary"
path = "tests/arbitrary.rs"
[[test]]
name = "arbitrary_in_macro_rules"
path = "tests/arbitrary_in_macro_rules.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "proptest_fn"
path = "tests/proptest_fn.rs"
[[test]]
name = "readme_arbitrary"
path = "tests/readme_arbitrary.rs"
[[test]]
name = "readme_proptest"
path = "tests/readme_proptest.rs"
[[test]]
name = "test_helpers"
path = "tests/test_helpers.rs"
[dependencies.derive-ex]
version = "0.1.8"
[dependencies.proc-macro2]
version = "1.0.94"
[dependencies.quote]
version = "1.0.40"
[dependencies.structmeta]
version = "0.3.0"
[dependencies.syn]
version = "2.0.100"
features = [
"visit",
"full",
"extra-traits",
]
[dev-dependencies.anyhow]
version = "1.0.97"
[dev-dependencies.googletest]
version = "0.14.0"
[dev-dependencies.proptest]
version = "1.6.0"
[dev-dependencies.tokio]
version = "1.44.1"
features = ["rt-multi-thread"]
[dev-dependencies.trybuild]
version = "1.0.104"