Compare commits

..

1 Commits

Author SHA1 Message Date
67401e8faf Fix cargo clippy issue
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-22 19:43:32 +01:00
2 changed files with 3 additions and 3 deletions

View File

@ -2414,9 +2414,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.137" version = "1.0.135"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b" checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
dependencies = [ dependencies = [
"itoa", "itoa",
"memchr", "memchr",

View File

@ -35,7 +35,7 @@ pub fn save_log(
.as_bytes(), .as_bytes(),
)?; )?;
file.flush()?; file.flush()?;
file.unlock()?; fs4::fs_std::FileExt::unlock(&file)?;
Ok(()) Ok(())
} }