Reduce futures-util features (#1427)

* Reduce futures-util features

* Remove unused futures crate from sqlx-macros
This commit is contained in:
Paolo Barbolini 2021-09-08 21:36:05 +02:00 committed by GitHub
parent 2eb4ff8713
commit efd08cc4b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 3 deletions

1
Cargo.lock generated
View file

@ -2535,7 +2535,6 @@ version = "0.5.7"
dependencies = [
"dotenv",
"either",
"futures",
"heck",
"hex",
"once_cell",

View file

@ -121,7 +121,7 @@ either = "1.5.3"
futures-channel = { version = "0.3.5", default-features = false, features = ["sink", "alloc", "std"] }
futures-core = { version = "0.3.5", default-features = false }
futures-intrusive = "0.4.0"
futures-util = { version = "0.3.5", features = ["sink"] }
futures-util = { version = "0.3.5", default-features = false, features = ["alloc", "sink"] }
generic-array = { version = "0.14.4", default-features = false, optional = true }
hex = "0.4.2"
hmac = { version = "0.10.1", default-features = false, optional = true }

View file

@ -79,7 +79,6 @@ json = ["sqlx-core/json", "serde_json"]
[dependencies]
dotenv = { version = "0.15.0", default-features = false }
futures = { version = "0.3.4", default-features = false, features = ["executor"] }
hex = { version = "0.4.2", optional = true }
heck = "0.3.1"
either = "1.5.3"