Skip to content

Commit b997e56

Browse files
authored
fix: Windows path length may exceed MAX_PATH (#3137)
1 parent cfc7238 commit b997e56

File tree

6 files changed

+84
-82
lines changed

6 files changed

+84
-82
lines changed

Cargo.lock

Lines changed: 36 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ lto = false
2323
ansi-to-tui = "7.0.0"
2424
anyhow = "1.0.99"
2525
base64 = "0.22.1"
26-
bitflags = { version = "2.9.3", features = [ "serde" ] }
27-
clap = { version = "4.5.46", features = [ "derive" ] }
26+
bitflags = { version = "2.9.4", features = [ "serde" ] }
27+
clap = { version = "4.5.47", features = [ "derive" ] }
2828
core-foundation-sys = "0.8.7"
2929
crossterm = { version = "0.29.0", features = [ "event-stream" ] }
3030
dirs = "6.0.0"
@@ -51,6 +51,6 @@ tokio-stream = "0.1.17"
5151
tokio-util = "0.7.16"
5252
toml = { version = "0.9.5" }
5353
tracing = { version = "0.1.41", features = [ "max_level_debug", "release_max_level_debug" ] }
54-
twox-hash = { version = "2.1.1", default-features = false, features = [ "std", "random", "xxhash3_128" ] }
5554
unicode-width = { version = "0.2.0", default-features = false }
55+
twox-hash = { version = "2.1.2", default-features = false, features = [ "std", "random", "xxhash3_128" ] }
5656
uzers = "0.12.1"

yazi-adapter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ansi-to-tui = { workspace = true }
2020
anyhow = { workspace = true }
2121
base64 = { workspace = true }
2222
crossterm = { workspace = true }
23-
image = { version = "0.25.7", default-features = false, features = [ "avif", "bmp", "dds", "exr", "ff", "gif", "hdr", "ico", "jpeg", "png", "pnm", "qoi", "tga", "webp" ] }
23+
image = { version = "0.25.8", default-features = false, features = [ "avif", "bmp", "dds", "exr", "ff", "gif", "hdr", "ico", "jpeg", "png", "pnm", "qoi", "tga", "webp" ] }
2424
palette = { version = "0.7.6", default-features = false }
2525
quantette = { version = "0.3.0", default-features = false }
2626
ratatui = { workspace = true }

yazi-fm/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ mlua = { workspace = true }
5050
paste = { workspace = true }
5151
ratatui = { workspace = true }
5252
scopeguard = { workspace = true }
53-
textwrap = "0.16.2"
5453
tokio = { workspace = true }
5554
tokio-stream = { workspace = true }
5655

0 commit comments

Comments
 (0)