Skip to content

Commit

Permalink
refactor: Minimize futures dependencies (#2248)
Browse files Browse the repository at this point in the history
* refactor: Replace futures with futures-util

* fix: Add futures-executor

* Revert "fix: Add futures-executor"

This reverts commit eb3664f.

* Use futures in core and handle features

* fix

* fix

* Revert to futures
  • Loading branch information
tottoto authored May 10, 2023
1 parent 20d8232 commit c979db9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ services-sftp = [
"dep:openssh-sftp-client",
"dep:bb8",
"dep:owning_ref",
"futures/executor",
]
services-sled = ["dep:sled"]
services-supabase = []
Expand Down Expand Up @@ -171,7 +172,7 @@ bytes = "1.2"
chrono = "0.4.24"
dashmap = { version = "5.4", optional = true }
flagset = "0.4"
futures = { version = "0.3", features = ["alloc"] }
futures = { version = "0.3", default-features = false, features = ["alloc"] }
hdrs = { version = "0.2", optional = true, features = ["async_file"] }
http = "0.2.5"
hyper = "0.14"
Expand Down

0 comments on commit c979db9

Please sign in to comment.