Skip to content

ci: switch release-plz to covector #34

ci: switch release-plz to covector

ci: switch release-plz to covector #34

GitHub Actions / clippy failed Sep 13, 2023 in 1s

clippy

12 errors

Details

Results

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

Versions

  • rustc 1.72.0 (5680fa18f 2023-08-23)
  • cargo 1.72.0 (103a7ff2e 2023-08-15)
  • clippy 0.1.72 (5680fa1 2023-08-23)

Annotations

Check failure on line 10 in crates/nosapi_data/src/nos/text.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `crate::nos::NOSFileType`

error[E0432]: unresolved import `crate::nos::NOSFileType`
  --> crates/nosapi_data/src/nos/text.rs:10:5
   |
10 | use crate::nos::NOSFileType;
   |     ^^^^^^^^^^^^^^^^^^^^^^^ no `NOSFileType` in `nos`
   |
help: consider importing this enum instead
   |
10 | use nos::r#type::NOSFileType;
   |     ~~~~~~~~~~~~~~~~~~~~~~~~

Check failure on line 8 in crates/nosapi_data/src/nos/text.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved imports `crate::nos::decrypt::NOSTextFileDataDecryptor`, `crate::nos::decrypt::NOSTextFileSimpleDecryptor`

error[E0432]: unresolved imports `crate::nos::decrypt::NOSTextFileDataDecryptor`, `crate::nos::decrypt::NOSTextFileSimpleDecryptor`
  --> crates/nosapi_data/src/nos/text.rs:8:45
   |
8  | use crate::nos::decrypt::{NOSFileDecryptor, NOSTextFileDataDecryptor, NOSTextFileSimpleDecryptor};
   |                                             ^^^^^^^^^^^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^^^^^^^^^^^^^ no `NOSTextFileSimpleDecryptor` in `nos::decrypt`
   |                                             |
   |                                             no `NOSTextFileDataDecryptor` in `nos::decrypt`
   |                                             help: a similar name exists in the module: `NOSFileDecryptor`
   |
note: struct `nos::decrypt::text::NOSTextFileDataDecryptor` exists but is inaccessible
  --> crates/nosapi_data/src/nos/decrypt/text.rs:42:1
   |
42 | pub struct NOSTextFileDataDecryptor {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not accessible
note: struct `nos::decrypt::text::NOSTextFileSimpleDecryptor` exists but is inaccessible
  --> crates/nosapi_data/src/nos/decrypt/text.rs:13:1
   |
13 | pub struct NOSTextFileSimpleDecryptor {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not accessible

Check failure on line 3 in crates/nosapi_data/src/nos/error.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved imports `crate::nos::NOSFileType`, `crate::nos::decrypt::NOSFileDecryptor`

error[E0432]: unresolved imports `crate::nos::NOSFileType`, `crate::nos::decrypt::NOSFileDecryptor`
 --> crates/nosapi_data/src/nos/error.rs:3:5
  |
3 | use crate::nos::NOSFileType;
  |     ^^^^^^^^^^^^^^^^^^^^^^^ no `NOSFileType` in `nos`
  |
 ::: crates/nosapi_data/src/nos/text.rs:8:27
  |
8 | use crate::nos::decrypt::{NOSFileDecryptor, NOSTextFileDataDecryptor, NOSTextFileSimpleDecryptor};
  |                           ^^^^^^^^^^^^^^^^
  |
help: consider importing this enum instead
  |
3 | use nos::r#type::NOSFileType;
  |     ~~~~~~~~~~~~~~~~~~~~~~~~

Check failure on line 5 in crates/nosapi_data/src/nos/text.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved imports `derivative`, `crate::nos::decrypt::NOSFileDecryptor`

error[E0432]: unresolved imports `derivative`, `crate::nos::decrypt::NOSFileDecryptor`
 --> crates/nosapi_data/src/nos/decrypt/text.rs:6:5
  |
6 | use crate::nos::decrypt::NOSFileDecryptor;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  |
 ::: crates/nosapi_data/src/nos/text.rs:5:5
  |
5 | use derivative::Derivative;
  |     ^^^^^^^^^^ maybe a missing crate `derivative`?
  |
  = help: consider adding `extern crate derivative` to use the `derivative` crate

Check failure on line 4 in crates/nosapi_data/src/nos/text.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `chrono`

error[E0432]: unresolved import `chrono`
 --> crates/nosapi_data/src/nos/text.rs:4:5
  |
4 | use chrono::{DateTime, LocalResult, TimeZone, Utc};
  |     ^^^^^^ maybe a missing crate `chrono`?
  |
  = help: consider adding `extern crate chrono` to use the `chrono` crate

Check failure on line 3 in crates/nosapi_data/src/nos/text.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `byteorder`

error[E0432]: unresolved import `byteorder`
 --> crates/nosapi_data/src/nos/text.rs:3:5
  |
3 | use byteorder::{LittleEndian, ReadBytesExt};
  |     ^^^^^^^^^ maybe a missing crate `byteorder`?
  |
  = help: consider adding `extern crate byteorder` to use the `byteorder` crate

Check failure on line 1 in crates/nosapi_data/src/nos/error.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `core`

error[E0432]: unresolved import `core`
 --> crates/nosapi_data/src/nos/error.rs:1:5
  |
1 | use core::fmt;
  |     ^^^^ maybe a missing crate `core`?
  |
  = help: consider adding `extern crate core` to use the `core` crate

Check failure on line 4 in crates/nosapi_data/src/nos/decrypt/text.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `byteorder`

error[E0432]: unresolved import `byteorder`
 --> crates/nosapi_data/src/nos/decrypt/text.rs:4:5
  |
4 | use byteorder::{LittleEndian, ReadBytesExt};
  |     ^^^^^^^^^ maybe a missing crate `byteorder`?
  |
  = help: consider adding `extern crate byteorder` to use the `byteorder` crate

Check failure on line 3 in crates/nosapi_data/src/nos/decrypt/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `text`

error[E0432]: unresolved import `text`
 --> crates/nosapi_data/src/nos/decrypt/mod.rs:3:9
  |
3 | pub use text::*;
  |         ^^^^ help: a similar path exists: `self::text`

Check failure on line 2 in crates/nosapi_data/src/nos/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `text`

error[E0432]: unresolved import `text`
 --> crates/nosapi_data/src/nos/mod.rs:2:9
  |
2 | pub use text::*;
  |         ^^^^ help: a similar path exists: `self::text`

Check failure on line 1 in crates/nosapi_data/src/nos/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `r#type`

error[E0432]: unresolved import `r#type`
 --> crates/nosapi_data/src/nos/mod.rs:1:9
  |
1 | pub use r#type::*;
  |         ^^^^^^ help: a similar path exists: `self::r#type`

Check failure on line 4 in crates/nosapi_data/src/client/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

failed to resolve: maybe a missing crate `pelite`?

error[E0433]: failed to resolve: maybe a missing crate `pelite`?
 --> crates/nosapi_data/src/client/mod.rs:4:5
  |
4 | use pelite::pe32::{Pe, PeFile};
  |     ^^^^^^ maybe a missing crate `pelite`?
  |
  = help: consider adding `extern crate pelite` to use the `pelite` crate