diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-01-03 11:04:52 +0000 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2021-01-03 11:49:30 +0000 |
commit | eaabba19d8d664ab06473bd0d4ec43d1244b37aa (patch) | |
tree | 268a185bff23a9ee2b50df0e01c908d848ad05cb | |
parent | 3d2d0ab700271bb112fd4f51684c62bcd96cad88 (diff) | |
download | alacritty-eaabba19d8d664ab06473bd0d4ec43d1244b37aa.tar.gz alacritty-eaabba19d8d664ab06473bd0d4ec43d1244b37aa.zip |
Update vte to 0.10.0
-rw-r--r-- | Cargo.lock | 11 | ||||
-rw-r--r-- | alacritty_terminal/Cargo.toml | 2 |
2 files changed, 8 insertions, 5 deletions
@@ -1637,7 +1637,8 @@ checksum = "14e39a4f106dafb0a748b951494667a44e62b55fd7942b4fc12706d63cc535a0" [[package]] name = "utf8parse" version = "0.2.0" -source = "git+https://github.com/alacritty/vte#b4b08a6de09ebecc6a4c14c81435418fd5a4e8a8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" [[package]] name = "vec_map" @@ -1673,8 +1674,9 @@ dependencies = [ [[package]] name = "vte" -version = "0.9.0" -source = "git+https://github.com/alacritty/vte#b4b08a6de09ebecc6a4c14c81435418fd5a4e8a8" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2df25fed2855d2fbcbdf1016c69a6ac070fa1aabc8b5d7aedaab8703dce0d2d6" dependencies = [ "utf8parse", "vte_generate_state_changes", @@ -1683,7 +1685,8 @@ dependencies = [ [[package]] name = "vte_generate_state_changes" version = "0.1.1" -source = "git+https://github.com/alacritty/vte#b4b08a6de09ebecc6a4c14c81435418fd5a4e8a8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" dependencies = [ "proc-macro2", "quote", diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index 4012f114..59bdbf15 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -18,7 +18,7 @@ bitflags = "1" parking_lot = "0.11.0" serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" -vte = { git = "https://github.com/alacritty/vte", default-features = false } +vte = { version = "0.10.0", default-features = false } mio = "0.6.20" mio-extras = "2" log = "0.4" |