Add zstd compression support #62
Annotations
1 error and 2 warnings
|
format check
Process completed with exit code 1.
|
|
variables can be used directly in the `format!` string:
utils/src/lib.rs#L30
warning: variables can be used directly in the `format!` string
--> utils/src/lib.rs:30:28
|
30 | let rel_path = format!("{}{}", prefix, rel_path);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
30 - let rel_path = format!("{}{}", prefix, rel_path);
30 + let rel_path = format!("{prefix}{rel_path}");
|
|
|
variables can be used directly in the `format!` string:
utils/src/lib.rs#L30
warning: variables can be used directly in the `format!` string
--> utils/src/lib.rs:30:28
|
30 | let rel_path = format!("{}{}", prefix, rel_path);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
30 - let rel_path = format!("{}{}", prefix, rel_path);
30 + let rel_path = format!("{prefix}{rel_path}");
|
|