diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-02-12 21:09:22 +0100 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2024-02-14 01:20:49 +0400 |
commit | 7d22310a4aa5d0beb3da93ee35c4504b9f839293 (patch) | |
tree | f2925e2885de5d7acac203aa0b620eb5f894e0e0 | |
parent | 1645a70168ca012bcf6f2cab42271dd51ae682a2 (diff) | |
download | alacritty-7d22310a4aa5d0beb3da93ee35c4504b9f839293.tar.gz alacritty-7d22310a4aa5d0beb3da93ee35c4504b9f839293.zip |
Bump MSRV to 1.72.0
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d0bc36f..cdbf3392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## 0.14.0-dev +### Packaging + +- Minimum Rust version has been bumped to 1.72.0 + ### Added - Default `Home`/`End` bindings in Vi mode mapped to `First`/`Last` respectively @@ -10,9 +10,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "ahash" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" +checksum = "42cd52102d3df161c77a887b608d7a4897d7cc112886a9537b738a887a03aaff" dependencies = [ "cfg-if", "getrandom", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index c39473bf..37412f90 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -7,7 +7,7 @@ description = "A fast, cross-platform, OpenGL terminal emulator" readme = "README.md" homepage = "https://github.com/alacritty/alacritty" edition = "2021" -rust-version = "1.70.0" +rust-version = "1.72.0" [dependencies.alacritty_terminal] path = "../alacritty_terminal" |