Skip to content

Commit

Permalink
#32 Base implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Michele d'Amico committed Apr 4, 2022
1 parent df06074 commit 13bd859
Show file tree
Hide file tree
Showing 22 changed files with 1,271 additions and 1,240 deletions.
7 changes: 2 additions & 5 deletions Cargo.toml
Expand Up @@ -23,18 +23,15 @@ exclude = [
"playground",
]
members = [
"rstest_macros",
"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"]}
rstest_macros = {version = "0.13.0", path = "rstest_macros"}

[dev-dependencies]
actix-rt = "2.2.0"
Expand Down
36 changes: 36 additions & 0 deletions rstest_macros/Cargo.toml
@@ -0,0 +1,36 @@
[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"
homepage = "https://github.com/la10736/rstest"
keywords = ["test", "fixture"]
license = "MIT/Apache-2.0"
name = "rstest_macros"
repository = "https://github.com/la10736/rstest"
version = "0.13.0"

[lib]
proc-macro = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[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]
rstest = "0.12.0"
pretty_assertions = "1.0.0"
rstest_test = "0.5.0"
rstest_reuse = "0.3.0"
actix-rt = "2.2.0"
async-std = {version = "1.9.0", features = ["attributes"]}

[build-dependencies]
rustc_version = "0.4.0"
File renamed without changes.

0 comments on commit 13bd859

Please sign in to comment.