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:
parent
ed76efe9c0
commit
e6565f1b76
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue