We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d21f2f2 commit 517a08cCopy full SHA for 517a08c
crates/xtask/src/main.rs
@@ -142,6 +142,10 @@ impl Features {
142
)
143
}
144
145
+ fn without(self, feature: Feature) -> Self {
146
+ Self(self.0.into_iter().filter(|f| *f != feature).collect())
147
+ }
148
+
149
fn to_cargo_args(&self) -> Vec<String> {
150
if self.0.is_empty() {
151
vec![]
@@ -1625,7 +1629,7 @@ impl Xtasks {
1625
1629
1626
1630
let default_args = app_settings
1627
1631
.clone()
1628
- .with_features(Features::all_features())
1632
+ .with_features(Features::all_features().without(Feature::ProfileWithTracy))
1633
.with_profile(
1634
app_settings
1635
.profile
0 commit comments