[package]
edition = "2021"
rust-version = "1.83"
name = "checkito_macro"
version = "0.5.3"
authors = ["Magicolo <magicololand@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A set of macros to accompany the `checkito` crate."
documentation = "https://docs.rs/checkito_macro/latest/checkito_macro/"
readme = "README.md"
keywords = [
"property",
"testing",
"quickcheck",
"fuzz",
"hypothesis",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/Magicolo/checkito"
[features]
asynchronous = []
check = []
constant = []
default = []
regex = ["regex-syntax/unicode"]
[lib]
name = "checkito_macro"
path = "src/lib.rs"
proc-macro = true
[dependencies.quote]
version = "1.0"
default-features = false
[dependencies.regex-syntax]
version = "0.8"
optional = true
default-features = false
[dependencies.syn]
version = "2.0"
features = [
"proc-macro",
"parsing",
"full",
"printing",
]
default-features = false