Skip to content

Commit

Permalink
chore(deps): update rust crate futures to 0.3.31 (#60)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [futures](https://rust-lang.github.io/futures-rs)
([source](https://redirect.github.com/rust-lang/futures-rs)) |
dev-dependencies | patch | `0.3.30` -> `0.3.31` |
| [futures](https://rust-lang.github.io/futures-rs)
([source](https://redirect.github.com/rust-lang/futures-rs)) |
dependencies | patch | `0.3.30` -> `0.3.31` |

---

### Release Notes

<details>
<summary>rust-lang/futures-rs (futures)</summary>

###
[`v0.3.31`](https://redirect.github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0331---2024-10-05)

[Compare
Source](https://redirect.github.com/rust-lang/futures-rs/compare/0.3.30...0.3.31)

- Fix use after free of task in `FuturesUnordered` when dropped future
panics
([#&#8203;2886](https://redirect.github.com/rust-lang/futures-rs/issues/2886))
- Fix soundness bug in `task::waker_ref`
([#&#8203;2830](https://redirect.github.com/rust-lang/futures-rs/issues/2830))
This is a breaking change but allowed because it is soundness bug fix.
- Fix bugs in `AsyncBufRead::read_line` and `AsyncBufReadExt::lines`
([#&#8203;2884](https://redirect.github.com/rust-lang/futures-rs/issues/2884))
- Fix parsing issue in `select!`/`select_biased!`
([#&#8203;2832](https://redirect.github.com/rust-lang/futures-rs/issues/2832))
This is technically a breaking change as it will now reject a very odd
undocumented syntax that was previously accidentally accepted.
- Work around issue due to upstream `Waker::will_wake` change
([#&#8203;2865](https://redirect.github.com/rust-lang/futures-rs/issues/2865))
- Add `stream::Iter::{get_ref,get_mut,into_inner}`
([#&#8203;2875](https://redirect.github.com/rust-lang/futures-rs/issues/2875))
- Add `future::AlwaysReady`
([#&#8203;2825](https://redirect.github.com/rust-lang/futures-rs/issues/2825))
- Relax trait bound on non-constructor methods of
`io::{BufReader,BufWriter}`
([#&#8203;2848](https://redirect.github.com/rust-lang/futures-rs/issues/2848))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 10am on monday" in timezone
Asia/Shanghai, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/Boshen/criterion2.rs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 6, 2024
1 parent a87ccb9 commit 107877f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ oorandom = "11.1.4"

# Optional dependencies
rayon = { version = "1.10", optional = true }
futures = { version = "0.3.30", default-features = false, optional = true }
futures = { version = "0.3.31", default-features = false, optional = true }
smol = { version = "2.0.2", default-features = false, optional = true }
tokio = { version = "1.40.0", default-features = false, features = ["rt"], optional = true }
async-std = { version = "1.13.0", optional = true }
Expand All @@ -52,7 +52,7 @@ tempfile = "3.13.0"
approx = "0.5.1"
quickcheck = { version = "1.0.3", default-features = false }
rand = "0.8.5"
futures = { version = "0.3.30", default-features = false, features = ["executor"] }
futures = { version = "0.3.31", default-features = false, features = ["executor"] }

[features]
default = ["cargo_bench_support", "rayon"]
Expand Down

0 comments on commit 107877f

Please sign in to comment.