Skip to content
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

chore: release v0.11.4 #173

Merged
merged 1 commit into from
Nov 27, 2024

chore: release v0.11.4

ab4d4ba
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

chore: release v0.11.4 #173

chore: release v0.11.4
ab4d4ba
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Nov 27, 2024 in 0s

clippy

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
Note 0
Help 0

Versions

  • rustc 1.84.0-beta.1 (b4297a573 2024-11-26)
  • cargo 1.84.0-beta.1 (66221abde 2024-11-19)
  • clippy 0.1.84 (b4297a573b 2024-11-26)

Annotations

Check warning on line 145 in src/port_forwarding.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/port_forwarding.rs:145:6
    |
145 | impl<'a> fmt::Display for Socket<'a> {
    |      ^^                          ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
    = note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
    |
145 - impl<'a> fmt::Display for Socket<'a> {
145 + impl fmt::Display for Socket<'_> {
    |

Check warning on line 153 in /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.41.1/src/macros/try_join.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

current MSRV (Minimum Supported Rust Version) is `1.63.0` but this item is stable since `1.64.0`

warning: current MSRV (Minimum Supported Rust Version) is `1.63.0` but this item is stable since `1.64.0`
   --> src/child.rs:175:32
    |
175 |         let (stdout, stderr) = try_join!(stdout_read, stderr_read)?;
    |                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incompatible_msrv
    = note: `#[warn(clippy::incompatible_msrv)]` on by default
    = note: this warning originates in the macro `$crate::try_join` which comes from the expansion of the macro `try_join` (in Nightly builds, run with -Z macro-backtrace for more info)