From a7c7eb647d7c6a95ca750d36cc9847819aa78b1b 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 --- detcore/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detcore/Cargo.toml b/detcore/Cargo.toml index c5b5a34..6a277e3 100644 --- a/detcore/Cargo.toml +++ b/detcore/Cargo.toml @@ -31,7 +31,7 @@ chrono = { version = "0.4", features = ["clock", "serde", "std"], default-featur clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] } detcore-model = { version = "0.0.0", path = "../detcore-model" } digest = { version = "0.0.0", path = "../common/digest" } -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"