aboutsummaryrefslogtreecommitdiff
path: root/winpty/src/windows.rs
Commit message (Collapse)AuthorAge
* Extract winpty crateChristian Duerr2020-02-17
| | | | | The winpty crate and its winpty-sys depedency have been moved to https://github.com/alacritty/winpty.
* Replace deprecated Error methodssterlingjensen2020-01-03
|
* Clean up Windows PTY string handlingDavid Hewitt2020-01-02
| | | | | Removes widestring and dunce dependencies, reduces some code duplication and corrects a few typos.
* Fix vague startup crash messages with WinPTYDavid Hewitt2019-12-12
| | | Fixes #2344.
* Remove unnecessary lifetimes from winptysterlingjensen2019-12-05
|
* Fix spelling mistakesJDTX2019-04-28
|
* Split alacritty into a separate cratesTheodore Dubois2019-04-28
| | | | | The crate containing the entry point is called alacritty, and the crate containing everything else is called alacritty_terminal.
* Add rustfmt style guideChristian Duerr2019-03-30
|
* Normalize Log Message StringsNathan Lilienthal2019-01-07
| | | | | | 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".
* Upgrade to Rust 2018Joe Wilm2018-12-10
| | | | | This resolves a lot of NLL issues, however full NLL will be necessary to handle a couple of remaining issues.
* Fix for an underflow on some type conversions (#1715)Zac Pullar-Strecker2018-11-25
|
* Fix deb buildChristian Duerr2018-10-31
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.