From c1262d78901960b790dfb1f32bb6be99e9237c8c Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 3 Jan 2021 11:04:52 +0000 Subject: [PATCH] Update vte to 0.10.0 --- Cargo.lock | 11 +++++++---- alacritty_terminal/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e531f683..cf3504d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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 5bc144b2..40bf2667 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"