fix(core): switch to tui-term fork to support dimmed content (#31044)
This commit is contained in:
parent
265bb0b4bb
commit
e2b27b849b
41
Cargo.lock
generated
41
Cargo.lock
generated
@ -2208,7 +2208,7 @@ dependencies = [
|
|||||||
"tracing",
|
"tracing",
|
||||||
"tracing-appender",
|
"tracing-appender",
|
||||||
"tracing-subscriber",
|
"tracing-subscriber",
|
||||||
"tui-term",
|
"tui-term 0.2.0 (git+https://github.com/JamesHenry/tui-term?rev=88e3b61425c97220c528ef76c188df10032a75dd)",
|
||||||
"vt100-ctt",
|
"vt100-ctt",
|
||||||
"walkdir",
|
"walkdir",
|
||||||
"watchexec",
|
"watchexec",
|
||||||
@ -3851,7 +3851,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "72af159125ce32b02ceaced6cffae6394b0e6b6dfd4dc164a6c59a2db9b3c0b0"
|
checksum = "72af159125ce32b02ceaced6cffae6394b0e6b6dfd4dc164a6c59a2db9b3c0b0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ratatui",
|
"ratatui",
|
||||||
"vt100",
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tui-term"
|
||||||
|
version = "0.2.0"
|
||||||
|
source = "git+https://github.com/JamesHenry/tui-term?rev=88e3b61425c97220c528ef76c188df10032a75dd#88e3b61425c97220c528ef76c188df10032a75dd"
|
||||||
|
dependencies = [
|
||||||
|
"ratatui",
|
||||||
|
"vt100-ctt",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -3969,40 +3977,17 @@ version = "0.9.4"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "vt100"
|
|
||||||
version = "0.15.2"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "84cd863bf0db7e392ba3bd04994be3473491b31e66340672af5d11943c6274de"
|
|
||||||
dependencies = [
|
|
||||||
"itoa",
|
|
||||||
"log",
|
|
||||||
"unicode-width 0.1.11",
|
|
||||||
"vte 0.11.1",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "vt100-ctt"
|
name = "vt100-ctt"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
source = "git+https://github.com/JamesHenry/vt100-rust?rev=1de895505fe9f697aadac585e4075b8fb45c880d#1de895505fe9f697aadac585e4075b8fb45c880d"
|
source = "git+https://github.com/JamesHenry/vt100-rust?rev=b15dc3b0f7db94167a9c584f1d403899c0cc871d#b15dc3b0f7db94167a9c584f1d403899c0cc871d"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"itoa",
|
"itoa",
|
||||||
"log",
|
"log",
|
||||||
"ratatui",
|
"ratatui",
|
||||||
"tui-term",
|
"tui-term 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"unicode-width 0.2.0",
|
"unicode-width 0.2.0",
|
||||||
"vte 0.13.1",
|
"vte",
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "vte"
|
|
||||||
version = "0.11.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197"
|
|
||||||
dependencies = [
|
|
||||||
"arrayvec",
|
|
||||||
"utf8parse",
|
|
||||||
"vte_generate_state_changes",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|||||||
@ -53,10 +53,10 @@ tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|||||||
tokio = { version = "1.32.0", features = ['sync','macros','io-util','rt','time'] }
|
tokio = { version = "1.32.0", features = ['sync','macros','io-util','rt','time'] }
|
||||||
tokio-util = "0.7.9"
|
tokio-util = "0.7.9"
|
||||||
tracing-appender = "0.2"
|
tracing-appender = "0.2"
|
||||||
tui-term = "0.2.0"
|
tui-term = { git = "https://github.com/JamesHenry/tui-term", rev = "88e3b61425c97220c528ef76c188df10032a75dd" }
|
||||||
walkdir = '2.3.3'
|
walkdir = '2.3.3'
|
||||||
xxhash-rust = { version = '0.8.5', features = ['xxh3', 'xxh64'] }
|
xxhash-rust = { version = '0.8.5', features = ['xxh3', 'xxh64'] }
|
||||||
vt100-ctt = { git = "https://github.com/JamesHenry/vt100-rust", rev = "1de895505fe9f697aadac585e4075b8fb45c880d" }
|
vt100-ctt = { git = "https://github.com/JamesHenry/vt100-rust", rev = "b15dc3b0f7db94167a9c584f1d403899c0cc871d" }
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
winapi = { version = "0.3", features = ["fileapi", "psapi", "shellapi"] }
|
winapi = { version = "0.3", features = ["fileapi", "psapi", "shellapi"] }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user