From 292136db985f306cbe8a8f86016e984f2c236def Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Sun, 28 Apr 2019 16:48:30 +0200 Subject: [PATCH] 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` --- tower-grpc-interop/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tower-grpc-interop/Cargo.toml b/tower-grpc-interop/Cargo.toml index 1962a096..5c176306 100644 --- a/tower-grpc-interop/Cargo.toml +++ b/tower-grpc-interop/Cargo.toml @@ -27,7 +27,7 @@ tower-grpc = { path = "../tower-grpc" } tower-service = "0.2" clap = "~2.29" -console = "0.5.0" +console = "0.7" rustls = "0.14.0" domain = "0.2.2"