summaryrefslogtreecommitdiff
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2024-12-22Alacritty version 0.14.1-rc1v0.14.1-rc1alacritty_terminal_v0.24.2-rc1v0.14Christian Duerr
2024-12-22Bump winit to 0.30.6Kirill Chibisov
Fixes #8268.
2024-10-22Alacritty version 0.14.0v0.14.0alacritty_terminal_v0.24.1Christian Duerr
2024-10-22Revert "Add unicode 16 support"Christian Duerr
This reverts commit 5dca7a85e7d8e98f8e770c17af8efb442c2277d0.
2024-10-22Fix pipe FD leak on X11Kirill Chibisov
The pipe was not using O_CLOEXEC, so it was leaked into the child. Fixes #8249.
2024-10-15Alacritty version 0.14.0-rc2v0.14.0-rc2alacritty_terminal_v0.24.1-rc2Christian Duerr
2024-10-11Alacritty version 0.14.0-rc1v0.14.0-rc1alacritty_terminal_v0.24.1-rc1Christian Duerr
2024-10-10Add unicode 16 supportChristian Duerr
This fixes issues in width calculation for symbols added in Unicode version 16. Since the upstream unicode-width crate has not been updated yet, this makes use of the temporary unicode-width-16 version to support Unicode 16 with Alacritty 0.14.0.
2024-10-02Add migration support for TOML config changesChristian Duerr
This patch allows running `alacritty migrate` to automatically apply configuration changes made to the TOML format, like moving `ipc_socket` to `general.ipc_socket`. This should reduce the friction of moving around individual options significantly, while also persisting the format of the existing TOML file thanks to `toml_edit`. The YAML migration has been simplified significantly to only switch the format of the file from YAML to TOML. The new TOML features are used for everything else.
2024-07-17Bump dependenciesKirill Chibisov
Update winit and clap to latest versions.
2024-06-23Bump winit to 0.30.3Kirill Chibisov
Fixes #8046.
2024-06-16Bump winit to 0.30.2Kirill Chibisov
Fixes #7969.
2024-06-08Bump glutin to 0.32.0Kirill Chibisov
2024-05-04Bump winit to 0.30.0Kirill Chibisov
2024-05-03Bump alacritty_terminal to 0.24.1-devChristian Duerr
This is only an update to the development version and does not represent a stable release.
2024-04-18Fix window being focused by defaultKirill Chibisov
Winit explicitly states that the window is not focused by default and the `Focused` event will deliver the state later on. Also start adding notable changes to alacritty_terminal in its own CHANGELOG. Closes #7866.
2024-03-18Bump dependenciesChristian Duerr
This bumps all dependencies that can be updated without introducing a build failure.
2024-03-14Bump winit to 0.29.15Kirill Chibisov
2024-03-07Bump winit to 0.29.14Kirill Chibisov
Fixes #7806.
2024-03-03Fix build failure on NetBSDKirill Chibisov
x11-clipboard was unconditionally using eventfd which is not present on NetBSD. Links: https://github.com/quininer/x11-clipboard/issues/48
2024-03-01Bump winit to 0.29.12Kirill Chibisov
The 0.29.11 was yanked.
2024-02-29Check alternative cursor icon names on WaylandFriz64
2024-02-27Bump winit to 0.29.11Kirill Chibisov
Fixes #7633. Fixes #7613. Fixes #7607. Fixes #7571. Fixes #7549.
2024-02-14Bump MSRV to 1.72.0Christian Duerr
2024-02-05Bump alacritty_terminal to 0.22.1Christian Duerr
This is only an update to the development version and does not represent a stable release.
2024-02-03Fix hang on startup with some Wayland compositorsKirill Chibisov
Fixes #7665.
2024-01-14Fixup alacritty_config version and depsKirill Chibisov
2024-01-06Bump winit to 0.29.9Kirill Chibisov
Fixes #7559. Fixes #7533.
2024-01-02Fix replacing optional fieldsChristian Duerr
This fixes an issue with the default `SerdeReplace` implementation where it would never recurse through options but always replace the entire option with the new value. Closes #7518.
2023-12-31Bump winit to 0.29.8Kirill Chibisov
Fixes #7514. Fixes #7502. Fixes #7494. Fixes #7474. Fixes #7472.
2023-12-29Remove direct dependency on once_cellPhilip Dubé
With MSRV 1.70, std now contains the necessary parts.
2023-12-27Bump winit to 0.29.7Kirill Chibisov
This also bumps other dependencies along the way. Fixes #2886.
2023-12-22Bump winit to 0.29.5Kirill Chibisov
Fixes #7449.
2023-12-14Update alacritty versionsChristian Duerr
This is only an update to the development versions and does not represent a stable release.
2023-12-14Bump crossfont to 0.7.0Kirill Chibisov
2023-12-08Update to crossfont 0.6.0Kirill Chibisov
2023-11-24Bump dependenciesKirill Chibisov
Update dependencies with `cargo update` as well as do explicit update of winit, crossfont, and regex-automata.
2023-11-23Update VTE to 0.13.0Kirill Chibisov
2023-11-10Remove `alacritty_config` from alacritty_terminalKirill Chibisov
There's no need to force alacritty's user configuration on other users of the crate, thus provide the options actually used by alacritty_terminal itself.
2023-11-04Bump ahash to 0.8.6Julian Braha
2023-10-30Bump glutin to 0.31.1Kirill Chibisov
This fixes a crash on startup with macOS Sonoma.
2023-10-29Add `window.blur` config optionKirill Chibisov
Fixes #972.
2023-10-21Update winit to 0.29.2 and copypasta to 0.10.0Kirill Chibisov
Fixes #7236. Fixes #7201. Fixes #7146. Fixes #6848. Fixes #3601. Fixes #3108. Fixes #2453.
2023-10-20Bump rustix to 0.38.20Kirill Chibisov
2023-10-11Use openpty-rustix instead of nixKirill Chibisov
Follow upstream libraries and use rustix to reduce the amount of dependencies in the future. Co-authored-by: Christian Duerr <contact@christianduerr.com>
2023-10-08Update dependenciesChristian Duerr
This patch applies all breaking and non-breaking dependency updates and bumps MSRV to 1.70.0.
2023-10-07Port from mio to pollingJohn Nunley
This patch replaces the mio crate with the polling. Now that smol-rs/polling#96 has been merged, we should be at full feature parity with mio v0.6 now. Fixes #7104. Fixes #6486.
2023-09-26Bump VTE to 0.12.0Kirill Chibisov
Fixes #6845.
2023-09-04Update winit to 0.29.1-betaKirill Chibisov
Make use of new winit frame throttling mechanism used in RedrawRequested, which removes the need for having Wayland queue to ask for the frame callbacks. Fixes #7011.
2023-08-27Update regex-automata to v0.3.6Christian Duerr
This seems like a sensible first step before looking into #7097.