diff --git a/README.md b/README.md index 9c76a682..260bd811 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ To use this feature, you need to enable `attributes` in the `async-std` features list in your `Cargo.toml`: ```toml -async-std = { version = "1.5", features = ["attributes"] } +async-std = { version = "1.13", features = ["attributes"] } ``` If your test input is an async value (fixture or test parameter) you can use `#[future]` diff --git a/playground/Cargo.toml b/playground/Cargo.toml index 616d9f56..f7465476 100644 --- a/playground/Cargo.toml +++ b/playground/Cargo.toml @@ -10,7 +10,7 @@ default = [] trace_all = [] [dependencies] -async-std = { version = "1.12.0", features = ["attributes"] } +async-std = { version = "1.13.0", features = ["attributes"] } lazy_static = "1.4.0" [dependencies.rstest] diff --git a/rstest/Cargo.toml b/rstest/Cargo.toml index 8402c2fa..829851ca 100644 --- a/rstest/Cargo.toml +++ b/rstest/Cargo.toml @@ -33,7 +33,7 @@ rstest_macros = { version = "0.22.0", path = "../rstest_macros", default-feature [dev-dependencies] actix-rt = "2.7.0" -async-std = { version = "1.12.0", features = ["attributes"] } +async-std = { version = "1.13.0", features = ["attributes"] } lazy_static = "1.4.0" mytest = { package = "rstest", version = "0.21.0", default-features = false } pretty_assertions = "1.2.1" diff --git a/rstest/src/lib.rs b/rstest/src/lib.rs index 22fa75f7..f1e0e93f 100644 --- a/rstest/src/lib.rs +++ b/rstest/src/lib.rs @@ -1032,7 +1032,7 @@ pub use rstest_macros::fixture; /// features list in your `Cargo.toml`: /// /// ```toml -/// async-std = { version = "1.5", features = ["attributes"] } +/// async-std = { version = "1.13", features = ["attributes"] } /// ``` /// /// If your test input is an async value (fixture or test parameter) you can use `#[future]` diff --git a/rstest_macros/Cargo.toml b/rstest_macros/Cargo.toml index 9fd94dc5..16483a8b 100644 --- a/rstest_macros/Cargo.toml +++ b/rstest_macros/Cargo.toml @@ -41,7 +41,7 @@ proc-macro-crate = { version = "3.1.0", optional = true } [dev-dependencies] actix-rt = "2.7.0" -async-std = { version = "1.12.0", features = ["attributes"] } +async-std = { version = "1.13.0", features = ["attributes"] } maplit = "1.0.2" pretty_assertions = "1.2.1" rstest = { version = "0.21.0", default-features = false }