Fix release build name and win32 feature (#691)

* Fix typos in release artifacts

Fixes #690

* Fix `win32` feature flag for `pancurses`

Previously, the `win32` feature was enabled for pancurses 0.17.x, which was additionally pulled in
as an extra dependency even though it wasn't used.

With this change, cargo should enable the `win32` feature in the `pancurses` instance used by `cursive`.

Fixes #690
This commit is contained in:
Henrik Friedrichsen
2022-01-02 20:09:09 +01:00
committed by GitHub
parent 94328e4ca3
commit e178837b28
3 changed files with 9 additions and 22 deletions

17
Cargo.lock generated
View File

@@ -604,7 +604,7 @@ dependencies = [
"libc",
"log",
"maplit",
"pancurses 0.16.1",
"pancurses",
"signal-hook",
"term_size",
"termion",
@@ -1752,7 +1752,7 @@ dependencies = [
"librespot-protocol",
"log",
"notify-rust",
"pancurses 0.17.0",
"pancurses",
"parse_duration",
"platform-dirs",
"rand",
@@ -2262,19 +2262,6 @@ dependencies = [
"winreg 0.5.1",
]
[[package]]
name = "pancurses"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0352975c36cbacb9ee99bfb709b9db818bed43af57751797f8633649759d13db"
dependencies = [
"libc",
"log",
"ncurses",
"pdcurses-sys",
"winreg 0.5.1",
]
[[package]]
name = "parking"
version = "2.0.0"