diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-08-07 22:37:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-07 22:37:23 +0000 |
commit | 576252294d09c1f52ec73bde03652349bdf5a529 (patch) | |
tree | a69c478979c7bb3ca800996230a1db75c83da62e /alacritty_terminal/Cargo.toml | |
parent | b14d032432c9502d2aac0b01ecc957d92672eada (diff) | |
download | alacritty-576252294d09c1f52ec73bde03652349bdf5a529.tar.gz alacritty-576252294d09c1f52ec73bde03652349bdf5a529.zip |
Add support for colon separated SGR parameters
This implements the colon separated form of SGR 38 and 48.
Fixes #1485.
Diffstat (limited to 'alacritty_terminal/Cargo.toml')
-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 11ebae4e..61861bc3 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -14,7 +14,7 @@ bitflags = "1" parking_lot = "0.10.2" serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" -vte = { version = "0.8.0", default-features = false } +vte = { git = "https://github.com/alacritty/vte", rev = "4f44023dab081f7da74fee14bc53b10ee8f96a1e", default-features = false } mio = "0.6.20" mio-extras = "2" log = "0.4" |