Skip to content

Commit

Permalink
remove futures_util
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasheartman committed Dec 11, 2024
1 parent 36d6efd commit 481acce
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,7 @@ repository = "https://github.com/Unleash/unleash-edge"
version = "19.6.3"

[features]
streaming = [
"actix-web-lab",
"eventsource-client",
"futures-util",
"tokio-stream",
]
streaming = ["actix-web-lab", "eventsource-client", "tokio-stream"]

[package.metadata.wix]
upgrade-guid = "11E5D83A-3034-48BB-9A84-9F589EBD648C"
Expand Down Expand Up @@ -52,7 +47,6 @@ dashmap = "6.0.1"
eventsource-client = { version = "0.13.0", optional = true }
futures = "0.3.30"
futures-core = "0.3.30"
futures-util = { version = "0.3.31", optional = true }
iter_tools = "0.24.0"
itertools = "0.13.0"
lazy_static = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion server/src/http/broadcaster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use actix_web_lab::{
util::InfallibleStream,
};
use dashmap::DashMap;
use futures_util::future;
use futures::future;
use serde::Serialize;
use tokio::sync::mpsc;
use tokio_stream::wrappers::ReceiverStream;
Expand Down

0 comments on commit 481acce

Please sign in to comment.