Skip to content

Commit

Permalink
third-party/rust: update futures
Browse files Browse the repository at this point in the history
Summary:
Those newer versions of Futures have compatibility improvements with Tokio,
notably:

- rust-lang/futures-rs#2333
- rust-lang/futures-rs#2358

Reviewed By: farnz

Differential Revision: D26778794

fbshipit-source-id: 5a9dc002083e5edfa5c614d8d2242e586a93fcf6
  • Loading branch information
krallin authored and facebook-github-bot committed Mar 4, 2021
1 parent 366d015 commit 03d6cdd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion resctl/below/Cargo.toml
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion resctl/below/if/Cargo.toml
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion resctl/below/store/Cargo.toml
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion resctl/common/cgroupfs/if/Cargo.toml
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion resctl/common/procfs/if/Cargo.toml
Expand Up @@ -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"] }
Expand Down

0 comments on commit 03d6cdd

Please sign in to comment.