Update Rust crate axum to 0.8.0 #80
Annotations
2 errors and 5 warnings
mismatched types:
src/main.rs#L113
error[E0308]: mismatched types
--> src/main.rs:113:33
|
113 | .send(Message::Text(e.content.to_owned()))
| ------------- ^^^^^^^^^^^^^^^^^^^^ expected `Utf8Bytes`, found `String`
| |
| arguments to this enum variant are incorrect
|
note: tuple variant defined here
--> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/axum-0.8.1/src/extract/ws.rs:709:5
|
709 | Text(Utf8Bytes),
| ^^^^
help: call `Into::into` on this expression to convert `std::string::String` into `axum::extract::ws::Utf8Bytes`
|
113 | .send(Message::Text(e.content.to_owned().into()))
| +++++++
|
rust
Clippy had exited with the 101 exit code
|
rust
Unsupported Cargo.lock format, fallback to caching entire file
|
rust
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
rust
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
rust
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
rust
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|