From 1711463ce369c275f7cf7fe1260675f72603661c Mon Sep 17 00:00:00 2001 From: "J.T. Conklin" Date: Wed, 27 Mar 2024 16:23:45 -0700 Subject: [PATCH] rust/third-party: update to futures-0.3.30 Summary: Changelog since last import: ``` # 0.3.30 - 2023-12-24 * Add `{BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of` (#2797) * Fix panic in `FuturesUnordered::clear` (#2809) * Fix panic in `AsyncBufReadExt::fill_buf` (#2801, #2812) * Improve support for targets without atomic CAS (#2811) * Remove build scripts (#2811) # 0.3.29 - 2023-10-26 * Add `TryStreamExt::try_ready_chunks` (#2757) * Add `TryStreamExt::{try_all,try_any}` (#2783) * Add `UnboundedSender::{len,is_empty}` (#2750) * Fix `Sync` impl of `FuturesUnordered` (#2788) * Fix infinite loop caused by invalid UTF-8 bytes (#2785) * Fix build error with -Z minimal-versions (#2761) ``` I'm updating this as I need `TryStreamExt::try_all()` for a Sandcastle Worker change. Reviewed By: krallin Differential Revision: D55318002 fbshipit-source-id: 0f64b13570cd1644000c3639bf16c0746266cb8e --- reverie-process/Cargo.toml | 2 +- reverie-ptrace/Cargo.toml | 2 +- safeptrace/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/reverie-process/Cargo.toml b/reverie-process/Cargo.toml index c75c1c2..c01a5cf 100644 --- a/reverie-process/Cargo.toml +++ b/reverie-process/Cargo.toml @@ -12,7 +12,7 @@ license = "BSD-2-Clause" bincode = "1.3.3" bitflags = { version = "2.4", features = ["serde"] } colored = "2.1.0" -futures = { version = "0.3.28", features = ["async-await", "compat"] } +futures = { version = "0.3.30", features = ["async-await", "compat"] } libc = "0.2.139" nix = "0.25" serde = { version = "1.0.185", features = ["derive", "rc"] } diff --git a/reverie-ptrace/Cargo.toml b/reverie-ptrace/Cargo.toml index 838a6a1..f12ebc0 100644 --- a/reverie-ptrace/Cargo.toml +++ b/reverie-ptrace/Cargo.toml @@ -13,7 +13,7 @@ anyhow = "1.0.75" async-trait = "0.1.71" bincode = "1.3.3" bytes = { version = "1.1", features = ["serde"] } -futures = { version = "0.3.28", features = ["async-await", "compat"] } +futures = { version = "0.3.30", features = ["async-await", "compat"] } goblin = "0.5.2" iced-x86 = "1.17.0" lazy_static = "1.4" diff --git a/safeptrace/Cargo.toml b/safeptrace/Cargo.toml index a88c032..a1362e3 100644 --- a/safeptrace/Cargo.toml +++ b/safeptrace/Cargo.toml @@ -10,7 +10,7 @@ license = "BSD-2-Clause" [dependencies] bitflags = { version = "2.4", features = ["serde"] } -futures = { version = "0.3.28", features = ["async-await", "compat"] } +futures = { version = "0.3.30", features = ["async-await", "compat"] } lazy_static = "1.4" libc = "0.2.139" nix = "0.25"