mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
0e418bc2f7
The glutin 0.30.0 update decouples glutin from winit which provides us with basis for a multithreaded renderer. This also improves robustness of our configuration picking, context creation, and surface handling. As an example we're now able to start on systems without a vsync, we don't try to build lots of contexts to check if some config works, and so on. That also brings us possibility to handle context losses, but that's a future work. Fixes #1268.
14 lines
397 B
TOML
14 lines
397 B
TOML
[package]
|
|
name = "alacritty_config"
|
|
version = "0.1.1-dev"
|
|
authors = ["Christian Duerr <contact@christianduerr.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
description = "Alacritty configuration abstractions"
|
|
homepage = "https://github.com/alacritty/alacritty"
|
|
edition = "2021"
|
|
rust-version = "1.60.0"
|
|
|
|
[dependencies]
|
|
log = { version = "0.4.17", features = ["serde"] }
|
|
serde_yaml = "0.8.24"
|
|
serde = "1.0.137"
|