We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Looks like crates behind ws feature is not installed:
ws
Looks like TLS features for async-tungstenite is not enabled:
async-tungstenite
[INFO] [stderr] error[E0432]: unresolved import `async_tungstenite::tokio::connect_async_with_tls_connector` [INFO] [stderr] --> src/client/mod.rs:21:13 [INFO] [stderr] | [INFO] [stderr] 21 | tokio::{connect_async_with_tls_connector, ConnectStream}, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | no `connect_async_with_tls_connector` in `tokio` [INFO] [stderr] | help: a similar name exists in the module: `connect_async_with_config`
See https://docs.rs/crate/kube/0.46.0/builds/331723
Maybe adding "ws-native-tls" to the features or using all-features = true (#365) will fix it,
"ws-native-tls"
all-features = true
The text was updated successfully, but these errors were encountered:
Fix v0.46.0 docs failing to build
f1f406f
Closes kube-rs#366
my bad, picked an incomplete feature set
Sorry, something went wrong.
It works now https://docs.rs/crate/kube/0.47.0
Successfully merging a pull request may close this issue.
Looks like crates behindws
feature is not installed:Looks like TLS features for
async-tungstenite
is not enabled:See https://docs.rs/crate/kube/0.46.0/builds/331723
Maybe adding
"ws-native-tls"
to the features or usingall-features = true
(#365) will fix it,The text was updated successfully, but these errors were encountered: