diff --git a/rstest/Cargo.toml b/rstest/Cargo.toml index 750b2c90..e0114f07 100644 --- a/rstest/Cargo.toml +++ b/rstest/Cargo.toml @@ -21,21 +21,21 @@ default = ["async-timeout"] [lib] [dependencies] -futures = {version = "0.3.15", optional = true} -futures-timer = {version = "3.0.2", optional = true} -rstest_macros = {version = "0.15.0", path = "../rstest_macros", default-features = false} +futures = { version = "0.3.21", optional = true } +futures-timer = { version = "3.0.2", optional = true } +rstest_macros = {version = "0.16.0", path = "../rstest_macros", default-features = false} [dev-dependencies] -actix-rt = "2.2.0" -async-std = {version = "1.9.0", features = ["attributes"]} +actix-rt = "2.7.0" +async-std = { version = "1.12.0", features = ["attributes"] } lazy_static = "1.4.0" -mytest = {package = "rstest", version = "0.15.0", default-features = false} -pretty_assertions = "1.0.0" +mytest = { package = "rstest", version = "0.13.0", default-features = false } +pretty_assertions = "1.2.1" rstest_reuse = {version = "0.4", path = "../rstest_reuse"} rstest_test = {version = "0.9", path = "../rstest_test"} temp_testdir = "0.2.3" -tokio = {version = "1.6.1", features = ["rt", "macros"]} -unindent = "0.1.7" +tokio = { version = "1.19.2", features = ["rt", "macros"] } +unindent = "0.1.9" [build-dependencies] rustc_version = "0.4.0" diff --git a/rstest_macros/Cargo.toml b/rstest_macros/Cargo.toml index ae44cd0a..82553a56 100644 --- a/rstest_macros/Cargo.toml +++ b/rstest_macros/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["test", "fixture"] license = "MIT/Apache-2.0" name = "rstest_macros" repository = "https://github.com/la10736/rstest" -version = "0.15.0" +version = "0.16.0" [lib] proc-macro = true @@ -22,15 +22,15 @@ default = ["async-timeout"] [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"]} +proc-macro2 = "1.0.39" +quote = "1.0.19" +syn = {version = "1.0.98", features = ["full", "parsing", "extra-traits", "visit", "visit-mut"]} unicode-ident = "1.0.5" [dev-dependencies] -actix-rt = "2.2.0" -async-std = {version = "1.9.0", features = ["attributes"]} -pretty_assertions = "1.0.0" +actix-rt = "2.7.0" +async-std = {version = "1.12.0", features = ["attributes"]} +pretty_assertions = "1.2.1" rstest = {version = "0.15.0", default-features = false} rstest_reuse = {version = "0.4.0", path = "../rstest_reuse"} rstest_test = {version = "0.9.0", path = "../rstest_test"}