Skip to content

Revamp Reproducible Builds #219

Revamp Reproducible Builds

Revamp Reproducible Builds #219

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

clippy

9 warnings

Details

Results

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

Versions

  • rustc 1.80.0 (051478957 2024-07-21)
  • cargo 1.80.0 (376290515 2024-07-16)
  • clippy 0.1.80 (0514789 2024-07-21)

Annotations

Check warning on line 248 in check/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

`to_string` applied to a type that implements `Display` in `write!` args

warning: `to_string` applied to a type that implements `Display` in `write!` args
   --> check/src/main.rs:248:28
    |
248 |             self.common_cfg.to_string(),
    |                            ^^^^^^^^^^^^ help: remove this
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args

Check warning on line 236 in check/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

`to_string` applied to a type that implements `Display` in `format!` args

warning: `to_string` applied to a type that implements `Display` in `format!` args
   --> check/src/main.rs:236:84
    |
236 |                 Some(path) => format!("--keystore-password-path={}", path.display().to_string()),
    |                                                                                    ^^^^^^^^^^^^ help: remove this
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args

Check warning on line 224 in check/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

`to_string` applied to a type that implements `Display` in `format!` args

warning: `to_string` applied to a type that implements `Display` in `format!` args
   --> check/src/main.rs:224:78
    |
224 |                 Some(path) => format!("--private-key-path={}", path.display().to_string()),
    |                                                                              ^^^^^^^^^^^^ help: remove this
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args

Check warning on line 209 in check/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

`to_string` applied to a type that implements `Display` in `write!` args

warning: `to_string` applied to a type that implements `Display` in `write!` args
   --> check/src/main.rs:209:22
    |
209 |             self.auth.to_string(),
    |                      ^^^^^^^^^^^^ help: remove this
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args

Check warning on line 208 in check/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

`to_string` applied to a type that implements `Display` in `write!` args

warning: `to_string` applied to a type that implements `Display` in `write!` args
   --> check/src/main.rs:208:30
    |
208 |             self.check_config.to_string(),
    |                              ^^^^^^^^^^^^ help: remove this
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args

Check warning on line 188 in check/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

`to_string` applied to a type that implements `Display` in `format!` args

warning: `to_string` applied to a type that implements `Display` in `format!` args
   --> check/src/main.rs:188:71
    |
188 |                 Some(path) => format!("--wasm-file={}", path.display().to_string()),
    |                                                                       ^^^^^^^^^^^^ help: remove this
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args

Check warning on line 186 in check/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

`to_string` applied to a type that implements `Display` in `write!` args

warning: `to_string` applied to a type that implements `Display` in `write!` args
   --> check/src/main.rs:186:28
    |
186 |             self.common_cfg.to_string(),
    |                            ^^^^^^^^^^^^ help: remove this
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
    = note: `#[warn(clippy::to_string_in_format_args)]` on by default

Check warning on line 97 in check/src/verify.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

deref which would be done by auto-deref

warning: deref which would be done by auto-deref
  --> check/src/verify.rs:97:37
   |
97 |             extract_compressed_wasm(&*result.input).len()
   |                                     ^^^^^^^^^^^^^^ help: try: `&result.input`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref

Check warning on line 75 in check/src/verify.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

deref which would be done by auto-deref

warning: deref which would be done by auto-deref
  --> check/src/verify.rs:75:65
   |
75 |         let tx_prelude = extract_program_evm_deployment_prelude(&*result.input);
   |                                                                 ^^^^^^^^^^^^^^ help: try: `&result.input`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
   = note: `#[warn(clippy::explicit_auto_deref)]` on by default