Update termwiz to the latest

Summary:
```
terminfo = "0.8"
termwiz = { version = "0.22", features = ["widgets"] }
```

for ratatui.
ratatui+termwiz will be used for remote debugging.
https://docs.google.com/document/d/1ze3O-b_ki-8ULBBXq5-SlBgSH-7z347lBQ9N2Gk1U8w/edit?usp=sharing

https://www.internalfb.com/intern/wiki/Rust-at-meta/Third_Party_Libraries/Managing_fbsource_third-party_with_Reindeer/

```
fbcode/common/rust/tools/reindeer/vendor
```

Reviewed By: dtolnay

Differential Revision: D52958400

fbshipit-source-id: 37ff1b15e8b2fa4b868c81bcd25beab8b7302295
This commit is contained in:
Kazuki Sakamoto 2024-02-22 15:42:29 -08:00 committed by Facebook GitHub Bot
parent cb76725edf
commit d78f6a25a2
5 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_de
subprocess = "0.2.7"
sysinfo = "0.26.8"
tabular = "0.2.0"
termwiz = { version = "0.18", features = ["widgets"] }
termwiz = { version = "0.22", features = ["widgets"] }
thrift-types = { version = "0.1.0", path = "../../../scm/lib/thrift-types" }
tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] }
toml = "0.8.4"

View File

@ -15,5 +15,5 @@ pipe = "0.2"
spawn-ext = { version = "0.1.0", path = "../spawn-ext" }
streampager = { version = "0.10.3", path = "../third-party/streampager" }
terminal_size = "0.3"
termwiz = { version = "0.18", features = ["widgets"] }
termwiz = { version = "0.22", features = ["widgets"] }
time-interval = { version = "0.1.0", path = "../util/time-interval" }

View File

@ -9,5 +9,5 @@ edition = "2021"
configmodel = { version = "0.1.0", path = "../../../config/model" }
hgplain = { version = "0.1.0", path = "../../../util/hgplain" }
io = { version = "0.1.0", path = "../.." }
termwiz = { version = "0.18", features = ["widgets"] }
termwiz = { version = "0.22", features = ["widgets"] }
tracing = "0.1.40"

View File

@ -7,6 +7,6 @@ edition = "2021"
[dependencies]
progress-model = { version = "0.1.0", path = "../model" }
termwiz = { version = "0.18", features = ["widgets"] }
termwiz = { version = "0.22", features = ["widgets"] }
unicode-segmentation = "1.6.0"
unicode-width = "0.1"

View File

@ -23,8 +23,8 @@ scopeguard = "1.0.0"
serde = { version = "1.0.185", features = ["derive", "rc"] }
smallvec = { version = "1.6.1", default-features = false }
tempfile = "3.8"
terminfo = "0.7"
termwiz = { version = "0.18", features = ["widgets"] }
terminfo = "0.8"
termwiz = { version = "0.22", features = ["widgets"] }
thiserror = "1.0.49"
toml = "0.8.4"
unicode-segmentation = "1.6.0"