1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 02:09:26 +02:00

Bump deps

This bumps deps that don't need major code refactoring or MSRV bumps.
This commit is contained in:
JasonLG1979 2022-05-23 08:00:35 -05:00
parent 5568c70cd1
commit c03d3ad102
7 changed files with 64 additions and 50 deletions

View file

@ -1053,7 +1053,7 @@ fn get_setup() -> Setup {
Some(creds) if username == creds.username => Some(creds),
_ => {
let prompt = &format!("Password for {}: ", username);
match rpassword::prompt_password_stderr(prompt) {
match rpassword::prompt_password(prompt) {
Ok(password) => {
if !password.is_empty() {
Some(Credentials::with_password(username, password))