summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ.T. Conklin <jtc@meta.com>2024-03-27 16:23:45 -0700
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2024-03-27 16:23:45 -0700
commit549f0c5dd2753a10211ef570b2eb0d1b9d0270bd (patch)
treef27354df03a21b4fc9f807cefad6f3385b58dc89
parent89d29831489589b29bf86013621d191bc31e9009 (diff)
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
-rw-r--r--below/model/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/below/model/Cargo.toml b/below/model/Cargo.toml
index f0b24973..f0367498 100644
--- a/below/model/Cargo.toml
+++ b/below/model/Cargo.toml
@@ -29,4 +29,4 @@ serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_de
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
[dev-dependencies]
-futures = { version = "0.3.28", features = ["async-await", "compat"] }
+futures = { version = "0.3.30", features = ["async-await", "compat"] }