[package]
edition = "2021"
rust-version = "1.85.0"
name = "quickcheck_macros"
version = "1.2.0"
authors = ["Andrew Gallant <jamslam@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A macro attribute for quickcheck."
homepage = "https://github.com/BurntSushi/quickcheck"
documentation = "https://docs.rs/quickcheck"
readme = "README.md"
keywords = [
"testing",
"quickcheck",
"property",
"shrinking",
"fuzz",
]
license = "Unlicense OR MIT"
repository = "https://github.com/BurntSushi/quickcheck"
[lib]
name = "quickcheck_macros"
path = "src/lib.rs"
proc-macro = true
[[example]]
name = "attribute"
path = "examples/attribute.rs"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = ["full"]
[dev-dependencies.quickcheck]
version = "1.0.0"