Update dependencies and fix clippy warnings
Some checks failed
Mirror / mirror (push) Failing after 7s
Test / cargo test (push) Successful in 1m39s

This commit is contained in:
2026-01-30 03:29:08 +04:00
parent 9dcce90201
commit b283e2a8df
3 changed files with 33 additions and 24 deletions

View File

@@ -64,7 +64,7 @@ fn pack(input: String, output: String) {
// Выравнивание буфера
if index != 0 {
while content_buffer.len() % 8 != 0 {
while !content_buffer.len().is_multiple_of(8) {
content_buffer.push(0);
}
}
@@ -139,7 +139,7 @@ fn pack(input: String, output: String) {
}
// Выравнивание буфера
while content_buffer.len() % 8 != 0 {
while !content_buffer.len().is_multiple_of(8) {
content_buffer.push(0);
}