fix: replace futures dependency with futures-util
This commit is contained in:
parent
5d9ba8800e
commit
54f537e84a
12 changed files with 12 additions and 12 deletions
|
|
@ -37,7 +37,7 @@ rustypipe.workspace = true
|
|||
once_cell.workspace = true
|
||||
regex.workspace = true
|
||||
thiserror.workspace = true
|
||||
futures.workspace = true
|
||||
futures-util.workspace = true
|
||||
reqwest = { workspace = true, features = ["stream"] }
|
||||
rand.workspace = true
|
||||
tokio = { workspace = true, features = ["macros", "fs", "process"] }
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ use std::{
|
|||
time::Duration,
|
||||
};
|
||||
|
||||
use futures::stream::{self, StreamExt};
|
||||
use futures_util::stream::{self, StreamExt};
|
||||
use once_cell::sync::Lazy;
|
||||
use rand::Rng;
|
||||
use regex::Regex;
|
||||
|
|
|
|||
Reference in a new issue