Skip to content
This repository has been archived by the owner on Apr 16, 2020. It is now read-only.

Fix Windows build by upgrading console 0.5 -> 0.7. #164

Merged
merged 1 commit into from Apr 29, 2019

Commits on Apr 28, 2019

  1. Fix Windows build by upgrading console 0.5 -> 0.7.

    Was getting compile errors with the winapi version used by the older console crate:
    
    error[E0531]: cannot find unit struct/variant or constant `VK_BACK` in module `winapi`
      --> C:\Users\repi\.cargo\registry\src\github.com-1ecc6299db9ec823\console-0.5.0\src\windows_term.rs:99:17
       |
    99 |         winapi::VK_BACK => Key::Char('\x08'),
       |                 ^^^^^^^ not found in `winapi`
    
    error[E0531]: cannot find unit struct/variant or constant `VK_TAB` in module `winapi`
       --> C:\Users\repi\.cargo\registry\src\github.com-1ecc6299db9ec823\console-0.5.0\src\windows_term.rs:100:17
        |
    100 |         winapi::VK_TAB => Key::Char('\x09'),
        |                 ^^^^^^ not found in `winapi`
    repi committed Apr 28, 2019
    Configuration menu
    Copy the full SHA
    292136d View commit details
    Browse the repository at this point in the history