deps: remove hyper-rustls/ring feature #3746
Annotations
3 errors
no method named `with_native_roots` found for struct `hyper_rustls::HttpsConnectorBuilder` in the current scope:
kube-client/src/client/auth/oauth.rs#L123
error[E0599]: no method named `with_native_roots` found for struct `hyper_rustls::HttpsConnectorBuilder` in the current scope
--> kube-client/src/client/auth/oauth.rs:123:22
|
122 | let https = hyper_rustls::HttpsConnectorBuilder::new()
| _____________________________-
123 | | .with_native_roots()
| |_____________________-^^^^^^^^^^^^^^^^^
|
help: there is a method `with_provider_and_native_roots` with a similar name, but with different arguments
--> /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/src/connector/builder.rs:121:5
|
121 | / pub fn with_provider_and_native_roots(
122 | | self,
123 | | provider: impl Into<Arc<CryptoProvider>>,
124 | | ) -> std::io::Result<ConnectorBuilder<WantsSchemes>> {
| |________________________________________________________^
|
no method named `with_native_roots` found for struct `hyper_rustls::HttpsConnectorBuilder` in the current scope:
kube-client/src/client/auth/oidc.rs#L322
error[E0599]: no method named `with_native_roots` found for struct `hyper_rustls::HttpsConnectorBuilder` in the current scope
--> kube-client/src/client/auth/oidc.rs:322:14
|
321 | let https = hyper_rustls::HttpsConnectorBuilder::new()
| _____________________-
322 | | .with_native_roots()
| |_____________-^^^^^^^^^^^^^^^^^
|
help: there is a method `with_provider_and_native_roots` with a similar name, but with different arguments
--> /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/src/connector/builder.rs:121:5
|
121 | / pub fn with_provider_and_native_roots(
122 | | self,
123 | | provider: impl Into<Arc<CryptoProvider>>,
124 | | ) -> std::io::Result<ConnectorBuilder<WantsSchemes>> {
| |________________________________________________________^
|
clippy_nightly
Error: Clippy has exited with exit code 101
|