chore(deps): update termwiz to v0.20.0 (#2169)

fix unparsed horizontal scroll escape sequences
This commit is contained in:
Thomas Linford 2023-02-17 11:01:47 +01:00 committed by GitHub
parent 27d577753c
commit c161766fc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 5 deletions

14
Cargo.lock generated
View file

@ -253,6 +253,12 @@ version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "base64"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
[[package]] [[package]]
name = "bitflags" name = "bitflags"
version = "1.3.2" version = "1.3.2"
@ -2942,12 +2948,12 @@ dependencies = [
[[package]] [[package]]
name = "termwiz" name = "termwiz"
version = "0.19.0" version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c18a622b077791579bcf2a631c29d552fedba6816701296dbe465ad01845fda" checksum = "9509a978a10fcbace4991deae486ae10885e0f4c2c465123e08c9714a90648fa"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"base64", "base64 0.21.0",
"bitflags", "bitflags",
"filedescriptor", "filedescriptor",
"finl_unicode", "finl_unicode",
@ -4023,7 +4029,7 @@ dependencies = [
"ansi_term", "ansi_term",
"arrayvec 0.7.2", "arrayvec 0.7.2",
"async-trait", "async-trait",
"base64", "base64 0.13.0",
"byteorder", "byteorder",
"cassowary", "cassowary",
"chrono", "chrono",

View file

@ -40,7 +40,7 @@ kdl = { version = "4.5.0", features = ["span"] }
#[cfg(not(target_family = "wasm"))] #[cfg(not(target_family = "wasm"))]
[target.'cfg(not(target_family = "wasm"))'.dependencies] [target.'cfg(not(target_family = "wasm"))'.dependencies]
termwiz = "0.19.0" termwiz = "0.20.0"
log4rs = "1.2.0" log4rs = "1.2.0"
signal-hook = "0.3" signal-hook = "0.3"
interprocess = "1.1.1" interprocess = "1.1.1"