Skip to content

Commit ea16284

Browse files
committed
fix: remove overridden dependency options
At some point we added `default-features = false` for the kube dependency, but that's not actually the desired behavior, and it was getting overridden by the workspace dependency anyway, so this just removes that erroneous config. Signed-off-by: Shane Utt <[email protected]>
1 parent 0e8bf53 commit ea16284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gateway-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ version.workspace = true
1616
[dependencies]
1717
delegate.workspace = true
1818
k8s-openapi = { workspace = true, features = ["schemars"] }
19-
kube = { workspace = true, default-features = false, features = ["derive"] }
19+
kube = { workspace = true, features = ["derive"] }
2020
once_cell.workspace = true
2121
regex.workspace = true
2222
schemars.workspace = true

0 commit comments

Comments
 (0)