mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
fix: add use-dev-tty to fix piping to yazi on mac
This commit is contained in:
parent
640efcee26
commit
172232352e
2 changed files with 13 additions and 1 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
|
@ -482,6 +482,7 @@ checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
"crossterm_winapi",
|
"crossterm_winapi",
|
||||||
|
"filedescriptor",
|
||||||
"futures-core",
|
"futures-core",
|
||||||
"libc",
|
"libc",
|
||||||
"mio",
|
"mio",
|
||||||
|
|
@ -712,6 +713,17 @@ dependencies = [
|
||||||
"thiserror",
|
"thiserror",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "filedescriptor"
|
||||||
|
version = "0.8.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7199d965852c3bac31f779ef99cbb4537f80e952e2d6aa0ffeb30cce00f4f46e"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"thiserror",
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "filetime"
|
name = "filetime"
|
||||||
version = "0.2.23"
|
version = "0.2.23"
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ yazi-shared = { path = "../yazi-shared", version = "0.2.5" }
|
||||||
# External dependencies
|
# External dependencies
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.86"
|
||||||
better-panic = "0.3.0"
|
better-panic = "0.3.0"
|
||||||
crossterm = { version = "0.27.0", features = [ "event-stream" ] }
|
crossterm = { version = "0.27.0", features = [ "event-stream", "use-dev-tty" ] }
|
||||||
fdlimit = "0.3.0"
|
fdlimit = "0.3.0"
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
mlua = { version = "0.9.9", features = [ "lua54" ] }
|
mlua = { version = "0.9.9", features = [ "lua54" ] }
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue