mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
Reduce futures-util features (#1427)
* Reduce futures-util features * Remove unused futures crate from sqlx-macros
This commit is contained in:
parent
2eb4ff8713
commit
efd08cc4b3
3 changed files with 1 additions and 3 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -2535,7 +2535,6 @@ version = "0.5.7"
|
|||
dependencies = [
|
||||
"dotenv",
|
||||
"either",
|
||||
"futures",
|
||||
"heck",
|
||||
"hex",
|
||||
"once_cell",
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue