add comment and bump patch version

main
_ 2025-09-29 17:06:25 +00:00
parent b21cfe8b78
commit ea615b036d
2 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@ keywords = ["passphrase", "password"]
license = "AGPL-3.0" license = "AGPL-3.0"
name = "division_of_one" name = "division_of_one"
repository = "https://six-five-six-four.com/git/reactor/division_of_one" repository = "https://six-five-six-four.com/git/reactor/division_of_one"
version = "1.0.0" version = "1.0.1"
[dependencies] [dependencies]
rand = { version = "0.9.2", features = ["unbiased"] } rand = { version = "0.9.2", features = ["unbiased"] }

View File

@ -16,6 +16,7 @@ pub fn main() -> Result<(), String> {
println!("{}", create_pin(9)); println!("{}", create_pin(9));
println!("{}", create_base32(8)); println!("{}", create_base32(8));
// Read a line of input so that the CLI can run in its own terminal without instantly closing the terminal when we exit.
println!("Press Enter"); println!("Press Enter");
let mut input = String::new(); let mut input = String::new();
std::io::stdin().read_line(&mut input).ok(); std::io::stdin().read_line(&mut input).ok();