[package]
edition = "2021"
name = "generate_test_macro"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A proc macro for writing test suites as methods on a struct, generating a macro_rules! macro to instantiate each test individually."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/username/generate_test_macro"
[lib]
name = "generate_test_macro"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "attrs"
path = "tests/attrs.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "cfg_attrs"
path = "tests/cfg_attrs.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "example"
path = "tests/example.rs"
[[test]]
name = "generic"
path = "tests/generic.rs"
[[test]]
name = "mixed"
path = "tests/mixed.rs"
[[test]]
name = "passthrough"
path = "tests/passthrough.rs"
[[test]]
name = "quickcheck"
path = "tests/quickcheck.rs"
[[test]]
name = "static_methods"
path = "tests/static_methods.rs"
[[test]]
name = "static_methods_only"
path = "tests/static_methods_only.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"
[dev-dependencies.trybuild]
version = "1.0.116"