From 72e56eee7a9f21677b7d7308bea345aa03f9d054 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Fri, 20 Dec 2024 23:40:22 +0200 Subject: [PATCH] Use stable Alacritty crate version (#22304) Release Notes: - N/A --- Cargo.lock | 9 +++++---- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 67ea3f42fe..7b5007a703 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,8 +83,9 @@ dependencies = [ [[package]] name = "alacritty_terminal" -version = "0.24.1-dev" -source = "git+https://github.com/alacritty/alacritty?rev=91d034ff8b53867143c005acfaa14609147c9a2c#91d034ff8b53867143c005acfaa14609147c9a2c" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52b9241459831fee2f22fcda52ddaf9e449b6627334a0f40f13a1b3344018060" dependencies = [ "base64 0.22.1", "bitflags 2.6.0", @@ -6983,7 +6984,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -14980,7 +14981,7 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 43b4b61e16..a888d868cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -337,7 +337,7 @@ zeta = { path = "crates/zeta" } # aho-corasick = "1.1" -alacritty_terminal = { git = "https://github.com/alacritty/alacritty", rev = "91d034ff8b53867143c005acfaa14609147c9a2c" } +alacritty_terminal = "0.24" any_vec = "0.14" anyhow = "1.0.86" arrayvec = { version = "0.7.4", features = ["serde"] }