Compare commits

...

2 Commits

Author SHA1 Message Date
_ ea615b036d add comment and bump patch version 2025-09-29 17:06:25 +00:00
_ b21cfe8b78 update toolchain and deps 2025-09-29 17:04:42 +00:00
4 changed files with 6 additions and 5 deletions

4
Cargo.lock generated
View File

@ -74,9 +74,9 @@ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
[[package]]
name = "rand"
version = "0.9.1"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
dependencies = [
"rand_chacha",
"rand_core",

View File

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

View File

@ -1,2 +1,2 @@
[toolchain]
channel = "1.85.1"
channel = "1.90.0"

View File

@ -16,6 +16,7 @@ pub fn main() -> Result<(), String> {
println!("{}", create_pin(9));
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");
let mut input = String::new();
std::io::stdin().read_line(&mut input).ok();