Replace some more futures_util APIs with std variants (#3874)

This commit is contained in:
Paolo Barbolini
2025-06-16 00:18:39 +02:00
committed by GitHub
parent 90797200ee
commit df47ffedd2
34 changed files with 55 additions and 67 deletions

View File

@@ -108,7 +108,7 @@ macro_rules! test_unprepared_type {
#[sqlx_macros::test]
async fn [< test_unprepared_type_ $name >] () -> anyhow::Result<()> {
use sqlx::prelude::*;
use futures::TryStreamExt;
use futures_util::TryStreamExt;
let mut conn = sqlx_test::new::<$db>().await?;