diff options
Diffstat (limited to 'alacritty')
-rw-r--r-- | alacritty/Cargo.toml | 18 | ||||
-rw-r--r-- | alacritty/build.rs | 2 | ||||
-rw-r--r-- | alacritty/src/migrate.rs | 1 |
3 files changed, 11 insertions, 10 deletions
diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index d80bc3f8..44a8bc2f 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.65.0" +rust-version = "1.70.0" [dependencies.alacritty_terminal] path = "../alacritty_terminal" @@ -32,13 +32,13 @@ glutin = { version = "0.30.4", default-features = false, features = ["egl", "wgl home = "0.5.5" libc = "0.2" log = { version = "0.4", features = ["std", "serde"] } -notify = "5.1.0" +notify = "6.1.1" once_cell = "1.12" parking_lot = "0.12.0" serde = { version = "1", features = ["derive"] } serde_json = "1" -serde_yaml = "0.8" -toml = "0.7.1" +serde_yaml = "0.9.25" +toml = "0.8.2" unicode-width = "0.1" winit = { version = "0.29.1-beta", default-features = false, features = ["serde"] } @@ -55,12 +55,11 @@ xdg = "2.5.0" png = { version = "0.17.5", default-features = false, optional = true } [target.'cfg(target_os = "macos")'.dependencies] -cocoa = "0.24.0" +cocoa = "0.25.0" objc = "0.2.2" [target.'cfg(not(any(target_os="windows", target_os="macos")))'.dependencies] x11-dl = { version = "2", optional = true } -wayland-client = { version = "0.29.0", features = ["dlopen"], optional = true } [target.'cfg(windows)'.dependencies] dirs = "5.0.1" @@ -72,7 +71,7 @@ windows-sys = { version = "0.48", features = [ ]} [target.'cfg(windows)'.build-dependencies] -embed-resource = "1.7.2" +embed-resource = "2.2.0" [features] default = ["wayland", "x11"] @@ -82,12 +81,13 @@ x11 = [ "glutin/x11", "glutin/glx", "x11-dl", - "png"] + "png", +] wayland = [ "copypasta/wayland", "glutin/wayland", "winit/wayland", "winit/wayland-dlopen", "winit/wayland-csd-adwaita-crossfont", - "wayland-client"] +] nightly = [] diff --git a/alacritty/build.rs b/alacritty/build.rs index e5f0141e..7c33040e 100644 --- a/alacritty/build.rs +++ b/alacritty/build.rs @@ -23,7 +23,7 @@ fn main() { .unwrap(); #[cfg(windows)] - embed_resource::compile("./windows/alacritty.rc"); + embed_resource::compile("./windows/alacritty.rc", embed_resource::NONE); } fn commit_hash() -> Option<String> { diff --git a/alacritty/src/migrate.rs b/alacritty/src/migrate.rs index c889bcd0..4d632af4 100644 --- a/alacritty/src/migrate.rs +++ b/alacritty/src/migrate.rs @@ -29,6 +29,7 @@ pub fn migrate(options: MigrateOptions) { // If we're doing a wet run, perform a dry run first for safety. if !options.dry_run { + #[allow(clippy::redundant_clone)] let mut options = options.clone(); options.silent = true; options.dry_run = true; |