Skip to content

Commit e1111dc

Browse files
committed
Remove extra dep and apply comments
1 parent cb63733 commit e1111dc

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/executor/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ ryu = "1.0.20"
5050
indexmap = "2.10.0"
5151
bumpalo = "3.19.0"
5252
once_cell = "1.21.3"
53-
schemars = "1.0.4"
5453

5554
[dev-dependencies]
5655
subgraphs = { path = "../../bench/subgraphs" }

lib/router-config/src/override_labels.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ pub enum LabelOverrideValue {
1515
/// A static boolean value to enable or disable the label.
1616
Boolean(bool),
1717
/// A dynamic value computed by an expression.
18-
Expression { expression: String },
18+
Expression {
19+
/// An expression that must evaluate to a boolean. If true, the label will be applied.
20+
expression: String,
21+
},
1922
}
2023

2124
impl LabelOverrideValue {

0 commit comments

Comments
 (0)