Update LICENSE #29
Annotations
4 errors and 2 warnings
|
/home/runner/work/malaketh-turbo/malaketh-turbo/cli/src/lib.rs#L225
variables can be used directly in the `format!` string
|
|
/home/runner/work/malaketh-turbo/malaketh-turbo/cli/src/lib.rs#L86
variables can be used directly in the `format!` string
|
|
variables can be used directly in the `format!` string:
cli/src/lib.rs#L86
error: variables can be used directly in the `format!` string
--> cli/src/new.rs:86:18
|
86 | moniker: format!("test-{}", index),
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
86 - moniker: format!("test-{}", index),
86 + moniker: format!("test-{index}"),
|
|
|
variables can be used directly in the `format!` string:
cli/src/lib.rs#L225
error: variables can be used directly in the `format!` string
--> cli/src/cmd/distributed_testnet.rs:225:18
|
225 | moniker: format!("test-{}", index),
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `-D clippy::uninlined-format-args` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::uninlined_format_args)]`
help: change this to
|
225 - moniker: format!("test-{}", index),
225 + moniker: format!("test-{index}"),
|
|
|
Formatting
The process '/usr/bin/git' failed with exit code 128
|
|
Clippy
The process '/usr/bin/git' failed with exit code 128
|