mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-19 08:39:44 +00:00
Replace some more futures_util APIs with std variants (#3874)
This commit is contained in:
@@ -6,7 +6,6 @@ workspace = "../../../"
|
||||
|
||||
[dependencies]
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
|
||||
futures = "0.3.1"
|
||||
tokio = { version = "1.20.0", features = [ "rt-multi-thread", "macros" ] }
|
||||
ratatui = "0.27.0"
|
||||
crossterm = "0.27.0"
|
||||
|
||||
@@ -7,7 +7,6 @@ workspace = "../../../"
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
dotenvy = "0.15.0"
|
||||
futures = "0.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
sqlx = { path = "../../../", features = [ "runtime-tokio", "postgres", "json" ] }
|
||||
|
||||
@@ -6,5 +6,5 @@ workspace = "../../../"
|
||||
|
||||
[dependencies]
|
||||
sqlx = { path = "../../../", features = [ "runtime-tokio", "postgres" ] }
|
||||
futures = "0.3.1"
|
||||
futures-util = { version = "0.3.1", default-features = false }
|
||||
tokio = { version = "1.20.0", features = ["rt-multi-thread", "macros", "time"]}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use futures::TryStreamExt;
|
||||
use futures_util::TryStreamExt;
|
||||
use sqlx::postgres::PgListener;
|
||||
use sqlx::{Executor, PgPool};
|
||||
use std::pin::pin;
|
||||
|
||||
@@ -6,7 +6,6 @@ workspace = "../../../"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
futures = "0.3"
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
tokio = { version = "1.20.0", features = ["rt", "macros"]}
|
||||
|
||||
@@ -6,7 +6,6 @@ workspace = "../../../"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
futures = "0.3"
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
tokio = { version = "1.20.0", features = ["rt", "macros"]}
|
||||
|
||||
@@ -6,5 +6,4 @@ workspace = "../../../"
|
||||
|
||||
[dependencies]
|
||||
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
|
||||
futures = "0.3.1"
|
||||
tokio = { version = "1.20.0", features = ["rt-multi-thread", "macros"]}
|
||||
|
||||
Reference in New Issue
Block a user