Bump async-tungstenite from 0.25.0 to 0.26.2 #353
Annotations
3 errors and 1 warning
src/testing.rs#L63
error[E0599]: no method named `into_client_request` found for struct `url::Url` in the current scope
--> src/testing.rs:63:35
|
63 | let mut req = url.clone().into_client_request().unwrap();
| ^^^^^^^^^^^^^^^^^^^ method not found in `url::Url`
|
::: /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tungstenite-0.13.0/src/client.rs:271:8
|
271 | fn into_client_request(self) -> Result<Request>;
| ------------------- the method is available for `url::Url` here
|
= help: items from traits can only be used if the trait is in scope
help: trait `IntoClientRequest` which provides `into_client_request` is implemented but not in scope; perhaps you want to import it
|
3 + use tide_websockets::tungstenite::client::IntoClientRequest;
|
|
src/testing.rs#L7
error: unused import: `client::IntoClientRequest`
--> src/testing.rs:7:19
|
7 | tungstenite::{client::IntoClientRequest, http::header::*, Error as WsError},
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D unused-imports` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(unused_imports)]`
|
|
|
This job failed
Loading