diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-11-26 00:57:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-26 00:57:44 +0000 |
commit | a2727d06f77973c47e1909a5f426789d6531bda9 (patch) | |
tree | 04cb2f53cec65697254dbd26560a68f102ff36f2 /alacritty_terminal/Cargo.toml | |
parent | 07684281901b8d287221ade9b7c93a0f437a26f1 (diff) | |
download | alacritty-a2727d06f77973c47e1909a5f426789d6531bda9.tar.gz alacritty-a2727d06f77973c47e1909a5f426789d6531bda9.zip |
Fix DoS caused by excessive CSI parameter values
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 330df913..64404e64 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -14,7 +14,7 @@ bitflags = "1" parking_lot = "0.11.0" serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" -vte = { version = "0.9.0", default-features = false } +vte = { git = "https://github.com/alacritty/vte", default-features = false } mio = "0.6.20" mio-extras = "2" log = "0.4" |