summaryrefslogtreecommitdiffstats
path: root/zellij-utils
diff options
context:
space:
mode:
authorThomas Linford <tlinford@users.noreply.github.com>2022-09-03 20:11:56 +0200
committerGitHub <noreply@github.com>2022-09-03 20:11:56 +0200
commita58a5ca7697526ff79cdfc3ed97e34b2de84ce15 (patch)
tree8c02d64a189bc3a21eee2564843a5c2779abcad6 /zellij-utils
parent28a002929abcad318b2e11779fb821075623c327 (diff)
fix osc params 1024 byte limit (#1711)
* update vte to v0.11.0, and turn off it's default-features * vte's default includes no_std, and in that case the osc params buffer is capped at 1024 bytes * add changelog entry
Diffstat (limited to 'zellij-utils')
-rw-r--r--zellij-utils/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml
index 0b7a95a05..4bbd08971 100644
--- a/zellij-utils/Cargo.toml
+++ b/zellij-utils/Cargo.toml
@@ -30,7 +30,7 @@ strum = "0.20.0"
strum_macros = "0.20.1"
thiserror = "1.0.30"
url = { version = "2.2.2", features = ["serde"] }
-vte = "0.10.1"
+vte = { version = "0.11.0", default-features = false }
log = "0.4.17"
unicode-width = "0.1.8"
miette = { version = "3.3.0", features = ["fancy"] }