rstest 0.7.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.7.0"

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

[lib]
proc-macro = true

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

[dev-dependencies]
actix-rt = "2.1.0"
async-std = { version = "1.9.0", features = ["attributes"] }
lazy_static = "1.4.0"
mytest = { package = "rstest", version = "0.6.4" }
pretty_assertions = "0.7.1"
rstest_reuse = "0.1.2"
rstest_test = "0.2.0"
temp_testdir = "0.2.3"
unindent = "0.1.7"

[build-dependencies]
rustc_version = "0.3.3"