Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add request coalescing for isolated tools #2589

Merged
merged 14 commits into from
Dec 3, 2024
Merged
5 changes: 5 additions & 0 deletions crates/pixi_build_frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,8 @@ pixi_build_types = { path = "../pixi_build_types" }
insta = { workspace = true, features = ["yaml", "filters"] }
rstest = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = [
"process",
"io-std",
"rt-multi-thread",
] }
3 changes: 1 addition & 2 deletions crates/pixi_build_frontend/src/build_frontend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ use rattler_conda_types::ChannelConfig;
use crate::{
protocol,
protocol_builder::{EnabledProtocols, ProtocolBuilder},
tool::ToolContext,
Protocol, SetupRequest,
Protocol, SetupRequest, ToolContext,
};

/// The frontend for building packages.
Expand Down
Loading