We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b4ccb8 commit dc6042fCopy full SHA for dc6042f
Cargo.toml
@@ -2,7 +2,7 @@
2
name = "lsm-tree"
3
description = "A K.I.S.S. implementation of log-structured merge trees (LSM-trees/LSMTs)"
4
license = "MIT OR Apache-2.0"
5
-version = "0.6.4"
+version = "0.6.5"
6
edition = "2021"
7
rust-version = "1.74.0"
8
readme = "README.md"
src/file.rs
@@ -43,6 +43,7 @@ pub fn fsync_directory<P: AsRef<Path>>(path: P) -> std::io::Result<()> {
43
#[cfg(target_os = "windows")]
44
pub fn fsync_directory<P: AsRef<Path>>(path: P) -> std::io::Result<()> {
45
// Cannot fsync directory on Windows
46
+ Ok(())
47
}
48
49
#[cfg(test)]
0 commit comments