Create LICENSE #28
Annotations
4 errors and 4 warnings
|
/home/runner/work/malaketh-turbo/malaketh-turbo/types/src/lib.rs#L44
variables can be used directly in the `format!` string
|
|
/home/runner/work/malaketh-turbo/malaketh-turbo/types/src/lib.rs#L53
variables can be used directly in the `format!` string
|
|
variables can be used directly in the `format!` string:
types/src/lib.rs#L53
error: variables can be used directly in the `format!` string
--> types/src/address.rs:53:9
|
53 | write!(f, "Address({})", self)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
53 - write!(f, "Address({})", self)
53 + write!(f, "Address({self})")
|
|
|
variables can be used directly in the `format!` string:
types/src/lib.rs#L44
error: variables can be used directly in the `format!` string
--> types/src/address.rs:44:13
|
44 | write!(f, "{:02X}", byte)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= 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
|
44 - write!(f, "{:02X}", byte)?;
44 + write!(f, "{byte:02X}")?;
|
|
|
Formatting
The process '/usr/bin/git' failed with exit code 128
|
|
Formatting
Cache not found for keys: v0-rust-fmt-Linux-x64-be6a55ca-21df8131, v0-rust-fmt-Linux-x64-be6a55ca
|
|
Clippy
The process '/usr/bin/git' failed with exit code 128
|
|
Clippy
Cache not found for keys: v0-rust-clippy-Linux-x64-be6a55ca-21df8131, v0-rust-clippy-Linux-x64-be6a55ca
|