mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Update patch dependencies
This commit is contained in:
parent
6f6ad2b2ee
commit
6e7f466c68
10 changed files with 273 additions and 222 deletions
|
@ -24,8 +24,8 @@ tasks:
|
|||
cargo test
|
||||
- oldstable: |
|
||||
cd alacritty
|
||||
rustup toolchain install --profile minimal 1.60.0
|
||||
rustup default 1.60.0
|
||||
rustup toolchain install --profile minimal 1.65.0
|
||||
rustup default 1.65.0
|
||||
cargo test
|
||||
- clippy: |
|
||||
cd alacritty
|
||||
|
|
|
@ -27,8 +27,8 @@ tasks:
|
|||
cargo +nightly fmt -- --check
|
||||
- oldstable: |
|
||||
cd alacritty
|
||||
rustup toolchain install --profile minimal 1.60.0
|
||||
rustup default 1.60.0
|
||||
rustup toolchain install --profile minimal 1.65.0
|
||||
rustup default 1.65.0
|
||||
cargo test
|
||||
- clippy: |
|
||||
cd alacritty
|
||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -19,7 +19,7 @@ jobs:
|
|||
run: cargo test
|
||||
- name: Oldstable
|
||||
run: |
|
||||
rustup default 1.60.0
|
||||
rustup default 1.65.0
|
||||
cargo test
|
||||
- name: Clippy
|
||||
run: |
|
||||
|
|
|
@ -7,6 +7,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
## 0.13.0-dev
|
||||
|
||||
### Packaging
|
||||
|
||||
- Minimum Rust version has been bumped to 1.65.0
|
||||
|
||||
### Changed
|
||||
|
||||
- Mode-specific bindings can now be bound in any mode for easier macros
|
||||
|
|
|
@ -42,7 +42,7 @@ and
|
|||
[easy](https://github.com/alacritty/alacritty/issues?q=is%3Aopen+is%3Aissue+label%3A%22D+-+easy%22)
|
||||
issues.
|
||||
|
||||
Please note that the minimum supported version of Alacritty is Rust 1.60.0. All patches are expected
|
||||
Please note that the minimum supported version of Alacritty is Rust 1.65.0. All patches are expected
|
||||
to work with the minimum supported version.
|
||||
|
||||
Since `alacritty_terminal`'s version always tracks the next release, make sure that the version is
|
||||
|
|
469
Cargo.lock
generated
469
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -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.60.0"
|
||||
rust-version = "1.65.0"
|
||||
|
||||
[dependencies.alacritty_terminal]
|
||||
path = "../alacritty_terminal"
|
||||
|
|
|
@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
|
|||
description = "Alacritty configuration abstractions"
|
||||
homepage = "https://github.com/alacritty/alacritty"
|
||||
edition = "2021"
|
||||
rust-version = "1.60.0"
|
||||
rust-version = "1.65.0"
|
||||
|
||||
[dependencies]
|
||||
log = { version = "0.4.17", features = ["serde"] }
|
||||
|
|
|
@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
|
|||
description = "Failure resistant deserialization derive"
|
||||
homepage = "https://github.com/alacritty/alacritty"
|
||||
edition = "2021"
|
||||
rust-version = "1.60.0"
|
||||
rust-version = "1.65.0"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
|
|
@ -7,7 +7,7 @@ description = "Library for writing terminal emulators"
|
|||
readme = "../README.md"
|
||||
homepage = "https://github.com/alacritty/alacritty"
|
||||
edition = "2021"
|
||||
rust-version = "1.60.0"
|
||||
rust-version = "1.65.0"
|
||||
|
||||
[dependencies.alacritty_config_derive]
|
||||
path = "../alacritty_config_derive"
|
||||
|
@ -33,7 +33,7 @@ unicode-width = "0.1"
|
|||
vte = { version = "0.10.0", default-features = false }
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
nix = "0.24.1"
|
||||
nix = { version = "0.26.2", default-features = false, features = ["term"] }
|
||||
signal-hook = "0.3.10"
|
||||
signal-hook-mio = { version = "0.2.1", features = ["support-v0_6"] }
|
||||
|
||||
|
|
Loading…
Reference in a new issue