Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed May 1, 2024
1 parent 2b4ccb8 commit dc6042f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lsm-tree"
description = "A K.I.S.S. implementation of log-structured merge trees (LSM-trees/LSMTs)"
license = "MIT OR Apache-2.0"
version = "0.6.4"
version = "0.6.5"
edition = "2021"
rust-version = "1.74.0"
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ pub fn fsync_directory<P: AsRef<Path>>(path: P) -> std::io::Result<()> {
#[cfg(target_os = "windows")]
pub fn fsync_directory<P: AsRef<Path>>(path: P) -> std::io::Result<()> {
// Cannot fsync directory on Windows
Ok(())
}

#[cfg(test)]
Expand Down

0 comments on commit dc6042f

Please sign in to comment.