mononoke/blobimport_lib: rename futures_ext alias

Summary: I need to use both futures_ext later in this stack. This makes it easier.

Reviewed By: StanislavGlebik

Differential Revision: D26485580

fbshipit-source-id: 589713c7280bf74c9e2b3e018782bf0b7eb821d7
This commit is contained in:
Thomas Orozco 2021-02-19 06:57:14 -08:00 committed by Facebook GitHub Bot
parent 3073987faf
commit 799e7809a6
5 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ mononoke_types = { path = "../mononoke_types", version = "0.1.0" }
synced_commit_mapping = { path = "../commit_rewriting/synced_commit_mapping", version = "0.1.0" }
cloned = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
failure_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
futures_ext = { package = "futures_01_ext", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
futures_01_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
tracing = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master", version = "0.1.0" }
anyhow = "1.0"
ascii = "1.0"

View File

@ -12,7 +12,7 @@ use anyhow::{format_err, Error};
use ascii::AsciiString;
use cloned::cloned;
use futures::{FutureExt, TryFutureExt};
use futures_ext::{try_boxfuture, BoxFuture, FutureExt as _};
use futures_01_ext::{try_boxfuture, BoxFuture, FutureExt as _};
use futures_old::{prelude::*, stream};
use slog::{info, Logger};

View File

@ -18,7 +18,7 @@ use futures::{
compat::{Future01CompatExt, Stream01CompatExt},
FutureExt, StreamExt, TryFutureExt,
};
use futures_ext::{
use futures_01_ext::{
spawn_future, try_boxfuture, try_boxstream, BoxFuture, BoxStream, FutureExt as _,
StreamExt as _,
};

View File

@ -6,7 +6,7 @@
*/
use anyhow::{format_err, Error, Result};
use futures_ext::{BoxFuture, FutureExt};
use futures_01_ext::{BoxFuture, FutureExt};
use futures_old::{
sync::{mpsc, oneshot},
Future, IntoFuture, Stream,

View File

@ -26,7 +26,7 @@ use futures::{
stream::{self, StreamExt, TryStreamExt},
Stream,
};
use futures_ext::StreamExt as OldStreamExt;
use futures_01_ext::StreamExt as OldStreamExt;
use futures_old::Future as OldFuture;
use slog::{debug, error, info};