From e116482e96ec6721bd1333bd5807011e5dfd6a24 Mon Sep 17 00:00:00 2001 From: Thomas Orozco Date: Thu, 4 Mar 2021 06:40:30 -0800 Subject: [PATCH] third-party/rust: update futures Summary: Those newer versions of Futures have compatibility improvements with Tokio, notably: - https://github.com/rust-lang/futures-rs/pull/2333 - https://github.com/rust-lang/futures-rs/pull/2358 Reviewed By: farnz Differential Revision: D26778794 fbshipit-source-id: 5a9dc002083e5edfa5c614d8d2242e586a93fcf6 --- fb303/thrift/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fb303/thrift/Cargo.toml b/fb303/thrift/Cargo.toml index df87009a3..9f9e4d44b 100644 --- a/fb303/thrift/Cargo.toml +++ b/fb303/thrift/Cargo.toml @@ -17,7 +17,7 @@ async-trait = "0.1.29" codegen_includer_proc_macro = { path = "../../common/rust/shed/codegen_includer_proc_macro" } const-cstr = "0.3.0" fbthrift = { path = "../../thrift/lib/rust" } -futures = { version = "0.3.5", features = ["async-await", "compat"] } +futures = { version = "0.3.13", features = ["async-await", "compat"] } lazy_static = "1.0" ref-cast = "1.0.2" serde = { version = "=1.0.118", features = ["derive", "rc"] }