diff --git a/shadowfs-core/Cargo.toml b/shadowfs-core/Cargo.toml index a7802e7..ea64a94 100644 --- a/shadowfs-core/Cargo.toml +++ b/shadowfs-core/Cargo.toml @@ -25,7 +25,7 @@ dashmap = "6.1" indexmap = "2.6" sha2 = "0.10" blake3 = "1.5" -lru = "0.12" +lru = "0.16" bincode = "1.3" zstd = "0.13" crc32fast = "1.4" @@ -33,19 +33,19 @@ regex = "1.11" serde_json = "1.0" rmp-serde = "1.3" num_cpus = "1.16" -crossterm = "0.27" +crossterm = "0.29" chrono = "0.4" clap = { version = "4.5", features = ["derive"] } -indicatif = "0.17" +indicatif = "0.18" [target.'cfg(unix)'.dependencies] libc = "0.2" [target.'cfg(target_os = "linux")'.dependencies] -inotify = "0.10" +inotify = "0.11" [target.'cfg(windows)'.dependencies] -windows = { version = "0.58", features = [ +windows = { version = "0.61", features = [ "Win32_Foundation", "Win32_System_SystemInformation", "Win32_System_Threading", @@ -54,7 +54,7 @@ windows = { version = "0.58", features = [ "Win32_Storage_ProjectedFileSystem" ] } winapi = { version = "0.3", features = ["securitybaseapi", "winnt", "processthreadsapi"] } -winreg = "0.52" +winreg = "0.55" [dev-dependencies] tempfile = "3.8" \ No newline at end of file diff --git a/shadowfs-ffi/Cargo.toml b/shadowfs-ffi/Cargo.toml index 752d4bc..b9bbe61 100644 --- a/shadowfs-ffi/Cargo.toml +++ b/shadowfs-ffi/Cargo.toml @@ -17,4 +17,4 @@ tracing.workspace = true thiserror.workspace = true [build-dependencies] -cbindgen = "0.26" \ No newline at end of file +cbindgen = "0.29" \ No newline at end of file diff --git a/shadowfs-linux/Cargo.toml b/shadowfs-linux/Cargo.toml index b3aa524..742a4d6 100644 --- a/shadowfs-linux/Cargo.toml +++ b/shadowfs-linux/Cargo.toml @@ -7,7 +7,7 @@ license.workspace = true repository.workspace = true [dependencies] -fuser = "0.13" +fuser = "0.15" libc = "0.2" shadowfs-core = { path = "../shadowfs-core" } tokio.workspace = true diff --git a/shadowfs-macos/Cargo.toml b/shadowfs-macos/Cargo.toml index dd067ce..ff9e12f 100644 --- a/shadowfs-macos/Cargo.toml +++ b/shadowfs-macos/Cargo.toml @@ -8,7 +8,7 @@ repository.workspace = true [dependencies] objc = "0.2" -core-foundation = "0.9" +core-foundation = "0.10" shadowfs-core = { path = "../shadowfs-core" } tokio.workspace = true tracing.workspace = true diff --git a/shadowfs-windows/Cargo.toml b/shadowfs-windows/Cargo.toml index 6a17dae..3569e63 100644 --- a/shadowfs-windows/Cargo.toml +++ b/shadowfs-windows/Cargo.toml @@ -7,7 +7,7 @@ license.workspace = true repository.workspace = true [dependencies] -windows = { version = "0.48", features = [ +windows = { version = "0.61", features = [ "Win32_Storage_ProjectedFileSystem", "Win32_Foundation", "Win32_Security",