-
-
Notifications
You must be signed in to change notification settings - Fork 324
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
Feature openapi
has hardcoded k8s-openapi's feature to v1_15
#90
Comments
Oh, that sounds wrong :( Do you mind pasting how you are using kube + k8s-openapi in Cargo.toml? I thought this would't happen with default-features set to false, but maybe we need to remove the pin there. |
Hi @clux I was testing [dependencies]
kube = { version = "0.18.1", features = ["openapi"] }
k8s-openapi = { version = "0.6.0", default-features = false, features = ["v1_14"] } Which resulted in that error. I think you need to get rid of this chunk and keep only the |
Have taken out all features by default. Think master is now better. Thanks for the report! |
releasing in 0.20.0 |
Currently, trying to use another version of the openapi (i.e. v1_14) causes compilation to fail with the following error:
As described in
k8s-openapi
, libraries should not specify a version/feature. Is this feasible in this library?The text was updated successfully, but these errors were encountered: