diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-05-13 09:58:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 12:58:34 +0300 |
commit | b656fba35ed12b776e8204115a6c6de76eda0a3b (patch) | |
tree | f790e93c7c1181db416aabc28e062303573a4bc5 /alacritty_terminal | |
parent | 73c7f0c48d32ab5dc4b50e14e875306f4ddb6545 (diff) | |
download | alacritty-b656fba35ed12b776e8204115a6c6de76eda0a3b.tar.gz alacritty-b656fba35ed12b776e8204115a6c6de76eda0a3b.zip |
Fix OSCs terminated by \x9c byte in unicode
Fixes #3591.
Diffstat (limited to 'alacritty_terminal')
-rw-r--r-- | alacritty_terminal/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index 7659358d..038bcb43 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -16,7 +16,7 @@ font = { path = "../font" } parking_lot = "0.10.2" serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" -vte = { version = "0.7.0", default-features = false } +vte = { version = "0.8.0", default-features = false } mio = "0.6.20" mio-extras = "2" log = "0.4" |