Skip to content

chore(deps): update thiserror requirement from 1.0.43 to 2.0.0 in /cr… #96

chore(deps): update thiserror requirement from 1.0.43 to 2.0.0 in /cr…

chore(deps): update thiserror requirement from 1.0.43 to 2.0.0 in /cr… #96

GitHub Actions / clippy succeeded Nov 7, 2024 in 0s

clippy

16 warnings

Details

Results

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

Versions

  • rustc 1.82.0 (f6e511eec 2024-10-15)
  • cargo 1.82.0 (8f40fc59f 2024-08-21)
  • clippy 0.1.82 (f6e511e 2024-10-15)

Annotations

Check warning on line 142 in crates/lib/src/buffer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item without indentation

warning: doc list item without indentation
   --> crates/lib/src/buffer.rs:142:9
    |
142 |     /// the default delimiter of the decoder.
    |         ^
    |
    = help: if this is supposed to be its own paragraph, add a blank line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
    |
142 |     ///   the default delimiter of the decoder.
    |         ++

Check warning on line 141 in crates/lib/src/buffer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item without indentation

warning: doc list item without indentation
   --> crates/lib/src/buffer.rs:141:9
    |
141 |     /// delimiter is encountered. If not provided, the method will read until
    |         ^
    |
    = help: if this is supposed to be its own paragraph, add a blank line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
    |
141 |     ///   delimiter is encountered. If not provided, the method will read until
    |         ++

Check warning on line 135 in crates/lib/src/buffer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item without indentation

warning: doc list item without indentation
   --> crates/lib/src/buffer.rs:135:9
    |
135 |     /// `StringDecoder` trait with the same byte order as the buffer.
    |         ^
    |
    = help: if this is supposed to be its own paragraph, add a blank line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
    = note: `#[warn(clippy::doc_lazy_continuation)]` on by default
help: indent this line
    |
135 |     ///   `StringDecoder` trait with the same byte order as the buffer.
    |         ++

Check warning on line 142 in crates/lib/src/buffer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item without indentation

warning: doc list item without indentation
   --> crates/lib/src/buffer.rs:142:9
    |
142 |     /// the default delimiter of the decoder.
    |         ^
    |
    = help: if this is supposed to be its own paragraph, add a blank line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
    |
142 |     ///   the default delimiter of the decoder.
    |         ++

Check warning on line 141 in crates/lib/src/buffer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item without indentation

warning: doc list item without indentation
   --> crates/lib/src/buffer.rs:141:9
    |
141 |     /// delimiter is encountered. If not provided, the method will read until
    |         ^
    |
    = help: if this is supposed to be its own paragraph, add a blank line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
    |
141 |     ///   delimiter is encountered. If not provided, the method will read until
    |         ++

Check warning on line 135 in crates/lib/src/buffer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item without indentation

warning: doc list item without indentation
   --> crates/lib/src/buffer.rs:135:9
    |
135 |     /// `StringDecoder` trait with the same byte order as the buffer.
    |         ^
    |
    = help: if this is supposed to be its own paragraph, add a blank line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
    = note: `#[warn(clippy::doc_lazy_continuation)]` on by default
help: indent this line
    |
135 |     ///   `StringDecoder` trait with the same byte order as the buffer.
    |         ++

Check warning on line 57 in crates/lib/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

ambiguous glob re-exports

warning: ambiguous glob re-exports
  --> crates/lib/src/lib.rs:57:9
   |
57 | pub use games::*;
   |         ^^^^^^^^ the name `query_with_timeout` in the value namespace is first re-exported here
...
60 | pub use query::*;
   |         -------- but the name `query_with_timeout` in the value namespace is also re-exported here

Check warning on line 57 in crates/lib/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

ambiguous glob re-exports

warning: ambiguous glob re-exports
  --> crates/lib/src/lib.rs:57:9
   |
57 | pub use games::*;
   |         ^^^^^^^^ the name `query` in the value namespace is first re-exported here
...
60 | pub use query::*;
   |         -------- but the name `query` in the value namespace is also re-exported here

Check warning on line 33 in crates/lib/src/services/valve_master_server/service.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

can be more succinctly written as a byte str

warning: can be more succinctly written as a byte str
  --> crates/lib/src/services/valve_master_server/service.rs:33:9
   |
33 |         &[b':'],
   |         ^^^^^^^ help: try: `b":"`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#byte_char_slices
   = note: `#[warn(clippy::byte_char_slices)]` on by default

Check warning on line 21 in crates/lib/src/games/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

ambiguous glob re-exports

warning: ambiguous glob re-exports
  --> crates/lib/src/games/mod.rs:21:9
   |
21 | pub use minetest::*;
   |         ^^^^^^^^^^^ the name `query_with_timeout` in the value namespace is first re-exported here
...
44 | pub use query::*;
   |         -------- but the name `query_with_timeout` in the value namespace is also re-exported here

Check warning on line 21 in crates/lib/src/games/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

ambiguous glob re-exports

warning: ambiguous glob re-exports
  --> crates/lib/src/games/mod.rs:21:9
   |
21 | pub use minetest::*;
   |         ^^^^^^^^^^^ the name `query` in the value namespace is first re-exported here
...
44 | pub use query::*;
   |         -------- but the name `query` in the value namespace is also re-exported here
   |
   = note: `#[warn(ambiguous_glob_reexports)]` on by default

Check warning on line 57 in crates/lib/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

ambiguous glob re-exports

warning: ambiguous glob re-exports
  --> crates/lib/src/lib.rs:57:9
   |
57 | pub use games::*;
   |         ^^^^^^^^ the name `query_with_timeout` in the value namespace is first re-exported here
...
60 | pub use query::*;
   |         -------- but the name `query_with_timeout` in the value namespace is also re-exported here

Check warning on line 57 in crates/lib/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

ambiguous glob re-exports

warning: ambiguous glob re-exports
  --> crates/lib/src/lib.rs:57:9
   |
57 | pub use games::*;
   |         ^^^^^^^^ the name `query` in the value namespace is first re-exported here
...
60 | pub use query::*;
   |         -------- but the name `query` in the value namespace is also re-exported here

Check warning on line 33 in crates/lib/src/services/valve_master_server/service.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

can be more succinctly written as a byte str

warning: can be more succinctly written as a byte str
  --> crates/lib/src/services/valve_master_server/service.rs:33:9
   |
33 |         &[b':'],
   |         ^^^^^^^ help: try: `b":"`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#byte_char_slices
   = note: `#[warn(clippy::byte_char_slices)]` on by default

Check warning on line 21 in crates/lib/src/games/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

ambiguous glob re-exports

warning: ambiguous glob re-exports
  --> crates/lib/src/games/mod.rs:21:9
   |
21 | pub use minetest::*;
   |         ^^^^^^^^^^^ the name `query_with_timeout` in the value namespace is first re-exported here
...
44 | pub use query::*;
   |         -------- but the name `query_with_timeout` in the value namespace is also re-exported here

Check warning on line 21 in crates/lib/src/games/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

ambiguous glob re-exports

warning: ambiguous glob re-exports
  --> crates/lib/src/games/mod.rs:21:9
   |
21 | pub use minetest::*;
   |         ^^^^^^^^^^^ the name `query` in the value namespace is first re-exported here
...
44 | pub use query::*;
   |         -------- but the name `query` in the value namespace is also re-exported here
   |
   = note: `#[warn(ambiguous_glob_reexports)]` on by default