Skip to content

wip

wip #534

GitHub Actions / clippy failed Jul 25, 2024 in 0s

clippy

7 errors

Details

Results

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

Versions

  • rustc 1.79.0 (129f3b996 2024-06-10)
  • cargo 1.79.0 (ffa9cf99a 2024-06-03)
  • clippy 0.1.79 (129f3b9 2024-06-10)

Annotations

Check failure on line 486 in host/src/process.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`

error: current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`
   --> host/src/process.rs:486:48
    |
486 |             audio_outputs_count: audio_outputs.len() as u32,
    |                                                ^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incompatible_msrv

Check failure on line 485 in host/src/process.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`

error: current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`
   --> host/src/process.rs:485:46
    |
485 |             audio_inputs_count: audio_inputs.len() as u32,
    |                                              ^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incompatible_msrv

Check failure on line 470 in host/src/process/audio_buffers.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`

error: current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`
   --> host/src/process/audio_buffers.rs:470:39
    |
470 |                     .add(self.buffers.len())
    |                                       ^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incompatible_msrv

Check failure on line 456 in host/src/process/audio_buffers.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unsafe block missing a safety comment

error: unsafe block missing a safety comment
   --> host/src/process/audio_buffers.rs:456:17
    |
456 |                 unsafe {
    |                 ^^^^^^^^
    |
    = help: consider adding a safety comment on the preceding line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#undocumented_unsafe_blocks

Check failure on line 455 in host/src/process/audio_buffers.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unsafe block missing a safety comment

error: unsafe block missing a safety comment
   --> host/src/process/audio_buffers.rs:455:29
    |
455 |                 let value = unsafe { AudioPortProcessingInfo::from_raw_ptr(self.start) };
    |                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: consider adding a safety comment on the preceding line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#undocumented_unsafe_blocks
note: the lint level is defined here
   --> host/src/lib.rs:2:9
    |
2   | #![deny(clippy::undocumented_unsafe_blocks)]
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check failure on line 427 in host/src/process/audio_buffers.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`

error: current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`
   --> host/src/process/audio_buffers.rs:427:38
    |
427 |         if port_index > self.buffers.len() {
    |                                      ^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incompatible_msrv

Check failure on line 411 in host/src/process/audio_buffers.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`

error: current MSRV (Minimum Supported Rust Version) is `1.72.0` but this item is stable since `1.79.0`
   --> host/src/process/audio_buffers.rs:411:22
    |
411 |         self.buffers.len()
    |                      ^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incompatible_msrv
    = note: `-D clippy::incompatible-msrv` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::incompatible_msrv)]`