Skip to content

Update env_logger requirement from 0.10 to 0.11 #556

Update env_logger requirement from 0.10 to 0.11

Update env_logger requirement from 0.10 to 0.11 #556

Triggered via pull request January 19, 2024 23:57
Status Failure
Total duration 2m 19s
Artifacts

CI.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

2 errors and 1 warning
msrv
Process completed with exit code 101.
lint
reviewdog exited with status code: 1
lint: src/dds/no_key/simpledatareader.rs#L73
[clippy] reported by reviewdog 🐶 warning: this bound is already specified as the supertrait of `FusedStream` --> src/dds/no_key/simpledatareader.rs:73:13 | 73 | ) -> impl Stream<Item = ReadResult<DeserializedCacheChange<D>>> + FusedStream + '_ { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#implied_bounds_in_impls = note: `#[warn(clippy::implied_bounds_in_impls)]` on by default help: try removing this bound | 73 - ) -> impl Stream<Item = ReadResult<DeserializedCacheChange<D>>> + FusedStream + '_ { 73 + ) -> impl FusedStream<Item = ReadResult<DeserializedCacheChange<D>>> + '_ { | Raw Output: src/dds/no_key/simpledatareader.rs:73:13:w:warning: this bound is already specified as the supertrait of `FusedStream` --> src/dds/no_key/simpledatareader.rs:73:13 | 73 | ) -> impl Stream<Item = ReadResult<DeserializedCacheChange<D>>> + FusedStream + '_ { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#implied_bounds_in_impls = note: `#[warn(clippy::implied_bounds_in_impls)]` on by default help: try removing this bound | 73 - ) -> impl Stream<Item = ReadResult<DeserializedCacheChange<D>>> + FusedStream + '_ { 73 + ) -> impl FusedStream<Item = ReadResult<DeserializedCacheChange<D>>> + '_ { | __END__