Skip to content

Commit dc6042f

Browse files
committed
fix: build
1 parent 2b4ccb8 commit dc6042f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lsm-tree"
33
description = "A K.I.S.S. implementation of log-structured merge trees (LSM-trees/LSMTs)"
44
license = "MIT OR Apache-2.0"
5-
version = "0.6.4"
5+
version = "0.6.5"
66
edition = "2021"
77
rust-version = "1.74.0"
88
readme = "README.md"

src/file.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ pub fn fsync_directory<P: AsRef<Path>>(path: P) -> std::io::Result<()> {
4343
#[cfg(target_os = "windows")]
4444
pub fn fsync_directory<P: AsRef<Path>>(path: P) -> std::io::Result<()> {
4545
// Cannot fsync directory on Windows
46+
Ok(())
4647
}
4748

4849
#[cfg(test)]

0 commit comments

Comments
 (0)