Revamp Reproducible Builds #221
Annotations
11 warnings
`to_string` applied to a type that implements `Display` in `write!` args:
check/src/main.rs#L254
warning: `to_string` applied to a type that implements `Display` in `write!` args
--> check/src/main.rs:254:28
|
254 | 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
|
`to_string` applied to a type that implements `Display` in `format!` args:
check/src/main.rs#L242
warning: `to_string` applied to a type that implements `Display` in `format!` args
--> check/src/main.rs:242:84
|
242 | 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
|
`to_string` applied to a type that implements `Display` in `format!` args:
check/src/main.rs#L230
warning: `to_string` applied to a type that implements `Display` in `format!` args
--> check/src/main.rs:230:78
|
230 | 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
|
`to_string` applied to a type that implements `Display` in `write!` args:
check/src/main.rs#L215
warning: `to_string` applied to a type that implements `Display` in `write!` args
--> check/src/main.rs:215:22
|
215 | 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
|
`to_string` applied to a type that implements `Display` in `write!` args:
check/src/main.rs#L214
warning: `to_string` applied to a type that implements `Display` in `write!` args
--> check/src/main.rs:214:30
|
214 | 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
|
`to_string` applied to a type that implements `Display` in `format!` args:
check/src/main.rs#L194
warning: `to_string` applied to a type that implements `Display` in `format!` args
--> check/src/main.rs:194:71
|
194 | 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
|
`to_string` applied to a type that implements `Display` in `write!` args:
check/src/main.rs#L192
warning: `to_string` applied to a type that implements `Display` in `write!` args
--> check/src/main.rs:192:28
|
192 | 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
|
deref which would be done by auto-deref:
check/src/verify.rs#L97
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
|
deref which would be done by auto-deref:
check/src/verify.rs#L75
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
|
(x86_64-unknown-linux-gnu, stable)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
(x86_64-unknown-linux-gnu, nightly)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|