From 03d6cdd88a931d221ad7198a850f41804f46012c 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 --- resctl/below/Cargo.toml | 2 +- resctl/below/if/Cargo.toml | 2 +- resctl/below/store/Cargo.toml | 2 +- resctl/common/cgroupfs/if/Cargo.toml | 2 +- resctl/common/procfs/if/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/resctl/below/Cargo.toml b/resctl/below/Cargo.toml index 9df41ee7..afbf88c4 100644 --- a/resctl/below/Cargo.toml +++ b/resctl/below/Cargo.toml @@ -40,7 +40,7 @@ view = { package = "below-view", version = "0.1.0", path = "view" } walkdir = "2.2.9" [dev-dependencies] -futures = { version = "0.3.5", features = ["async-await", "compat"] } +futures = { version = "0.3.13", features = ["async-await", "compat"] } maplit = "1.0" rand = { version = "0.7", features = ["small_rng"] } slog-term = "2.4.2" diff --git a/resctl/below/if/Cargo.toml b/resctl/below/if/Cargo.toml index 4b4545e0..71542749 100644 --- a/resctl/below/if/Cargo.toml +++ b/resctl/below/if/Cargo.toml @@ -21,7 +21,7 @@ cgroupfs_thrift = { version = "0.1.0", path = "../../common/cgroupfs/if" } codegen_includer_proc_macro = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" } const-cstr = "0.3.0" fbthrift = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "master" } -futures = { version = "0.3.5", features = ["async-await", "compat"] } +futures = { version = "0.3.13", features = ["async-await", "compat"] } lazy_static = "1.0" procfs_thrift = { version = "0.1.0", path = "../../common/procfs/if" } ref-cast = "1.0.2" diff --git a/resctl/below/store/Cargo.toml b/resctl/below/store/Cargo.toml index 765b9953..62acac5b 100644 --- a/resctl/below/store/Cargo.toml +++ b/resctl/below/store/Cargo.toml @@ -15,7 +15,7 @@ bitflags = "1.2" bytes = { version = "0.5", features = ["serde"] } common = { package = "below-common", version = "0.1.0", path = "../common" } fbthrift = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "master" } -futures = { version = "0.3.5", features = ["async-await", "compat"] } +futures = { version = "0.3.13", features = ["async-await", "compat"] } humantime = "1.3" maplit = "1.0" memmap = "0.7" diff --git a/resctl/common/cgroupfs/if/Cargo.toml b/resctl/common/cgroupfs/if/Cargo.toml index d6d35017..da38a821 100644 --- a/resctl/common/cgroupfs/if/Cargo.toml +++ b/resctl/common/cgroupfs/if/Cargo.toml @@ -19,7 +19,7 @@ async-trait = "0.1.29" codegen_includer_proc_macro = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" } const-cstr = "0.3.0" fbthrift = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "master" } -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"] } diff --git a/resctl/common/procfs/if/Cargo.toml b/resctl/common/procfs/if/Cargo.toml index b54c6030..7bef84a0 100644 --- a/resctl/common/procfs/if/Cargo.toml +++ b/resctl/common/procfs/if/Cargo.toml @@ -19,7 +19,7 @@ async-trait = "0.1.29" codegen_includer_proc_macro = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" } const-cstr = "0.3.0" fbthrift = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "master" } -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"] }