fix: replace futures dependency with futures-util

This commit is contained in:
ThetaDev 2024-12-01 22:24:00 +01:00
parent 72d46ee45b
commit 5c39bf4842
No known key found for this signature in database
GPG key ID: E319D3C5148D65B6
12 changed files with 12 additions and 12 deletions

View file

@ -1,7 +1,7 @@
use std::collections::BTreeMap;
use anyhow::{bail, Result};
use futures::{stream, StreamExt};
use futures_util::{stream, StreamExt};
use indicatif::{ProgressBar, ProgressStyle};
use num_enum::TryFromPrimitive;
use once_cell::sync::Lazy;