Skip to content

Commit

Permalink
Upgrade pinned rust version from 1.79 to 1.81
Browse files Browse the repository at this point in the history
This matches the version shipped w/ NixOS 24.11.
  • Loading branch information
flihp committed Feb 5, 2025
1 parent 18fc9f9 commit 01b02f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.79"
channel = "1.81"
4 changes: 2 additions & 2 deletions src/secret_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ impl SecretWriter for PrinterSecretWriter {
if i % 4 == 0 {
print_file.write_all(&[CR, LF])?;
}
print_file.write_all(&[b'\t'])?;
print_file.write_all(b"\t")?;
print_file.write_all(chunk)?;
}

Expand Down Expand Up @@ -220,7 +220,7 @@ impl SecretWriter for PrinterSecretWriter {
if i % 4 == 0 {
print_file.write_all(&[CR, LF])?;
}
print_file.write_all(&[b'\t'])?;
print_file.write_all(b"\t")?;
print_file.write_all(chunk)?;
}

Expand Down

0 comments on commit 01b02f0

Please sign in to comment.