1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-18 13:55:23 -05:00

Fix alacitty_terminal build on windows

The "consoleapi" feature in the winapi crate is required when using
things from the `winapi::um::consoleapi` module.
This commit is contained in:
Andrew Chin 2021-08-26 18:01:18 -04:00 committed by GitHub
parent ed76efe9c0
commit e6565f1b76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ signal-hook = { version = "0.1", features = ["mio-support"] }
miow = "0.3"
winapi = { version = "0.3.7", features = [
"impl-default", "basetsd", "libloaderapi", "minwindef", "ntdef", "processthreadsapi", "winbase",
"wincon", "wincontypes", "winerror", "winnt", "winuser",
"wincon", "wincontypes", "winerror", "winnt", "winuser", "consoleapi",
]}
mio-anonymous-pipes = "0.2"