From 92ea84dcacc8652c141f117aa7996e3e5b58652c 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 --- thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml b/thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml index 059941b2178..5d3626baaa0 100644 --- a/thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml +++ b/thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml @@ -18,7 +18,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 = "../../.." } -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"] }