Rust 1.88 enforces clippy::uninlined_format_args as a style lint under -D warnings. Change `writeln!(stdin, "{}", password)` to the inline form `writeln!(stdin, "{password}")`.