| Commit message (Collapse) | Author | Age |
| |
|
|
|
| |
The winpty crate and its winpty-sys depedency have been moved to
https://github.com/alacritty/winpty.
|
| | |
|
| |
|
|
|
| |
Removes widestring and dunce dependencies, reduces some code duplication
and corrects a few typos.
|
| |
|
| |
Fixes #2344.
|
| | |
|
| | |
|
| |
|
|
|
| |
The crate containing the entry point is called alacritty, and the crate
containing everything else is called alacritty_terminal.
|
| | |
|
| |
|
|
|
|
| |
The general style for errors, warnings and info messages is to start
with a capitalized letter and end without a period. The main exception
is when dealing with nouns that are clearer with special case handling,
e.g. "macOS failed to work" or "ioctl is borked".
|
| |
|
|
|
| |
This resolves a lot of NLL issues, however full NLL will be necessary to
handle a couple of remaining issues.
|
| | |
|
|
|
Since cargo-deb builds all members of the workspace by default, it is
necessary that the winpty subcrate can be built on all operating
systems, since it's not possible to have OS-specific workspace members.
To achieve this the crate has been changed to be empty by default on
non-windows systems. It might make sense to do something similar with
winpty-sys, but it's not strictly necessary at this point since we don't
directly depend on it.
This fixes #1716.
|