rstest 0.12.0

Rust fixture based test framework. It use procedural macro to implement fixtures and table based tests.
Documentation
[package]
authors = ["Michele d'Amico <michele.damico@gmail.com>"]
categories = ["development-tools::testing"]
description = """
Rust fixture based test framework. It use procedural macro
to implement fixtures and table based tests.
"""
edition = "2018"
exclude = [
  "/playground",
  "/rstest_fixtures",
]
homepage = "https://github.com/la10736/rstest"
keywords = ["test", "fixture"]
license = "MIT/Apache-2.0"
name = "rstest"
readme = "README.md"
repository = "https://github.com/la10736/rstest"
version = "0.12.0"

[workspace]
exclude = [
  "playground",
]
members = [
  "rstest_test",
  "rstest_reuse",
]

[lib]
proc-macro = true

[dependencies]
cfg-if = "1.0.0"
proc-macro2 = "1.0.27"
quote = "1.0.9"
syn = {version = "1.0.72", features = ["full", "parsing", "extra-traits", "visit", "visit-mut"]}

[dev-dependencies]
actix-rt = "2.2.0"
async-std = {version = "1.9.0", features = ["attributes"]}
lazy_static = "1.4.0"
mytest = {package = "rstest", version = "0.11.0"}
pretty_assertions = "1.0.0"
rstest_reuse = "0.1.3"
rstest_test = "0.5.0"
temp_testdir = "0.2.3"
unindent = "0.1.7"

[build-dependencies]
rustc_version = "0.4.0"