Skip to content

Add zstd compression support #62

Add zstd compression support

Add zstd compression support #62

Re-run triggered July 20, 2025 06:07
Status Failure
Total duration 48s
Artifacts

lint.yml

on: push
Fit to window
Zoom out
Zoom in

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}"); |