Skip to content

Commit

Permalink
Upgrade to async-std v1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb authored and la10736 committed Sep 16, 2024
1 parent d226b5b commit 5b0164f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]`
Expand Down
2 changes: 1 addition & 1 deletion playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion rstest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion rstest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]`
Expand Down
2 changes: 1 addition & 1 deletion rstest_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 5b0164f

Please sign in to comment.