Skip to content

Commit 3944407

Browse files
committedFeb 5, 2025
Upgrade pinned rust version from 1.79 to 1.81
This matches the version shipped w/ NixOS 24.11.
1 parent 18fc9f9 commit 3944407

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.79"
2+
channel = "1.81"

‎src/secret_writer.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ impl SecretWriter for PrinterSecretWriter {
163163
if i % 4 == 0 {
164164
print_file.write_all(&[CR, LF])?;
165165
}
166-
print_file.write_all(&[b'\t'])?;
166+
print_file.write_all(b"\t")?;
167167
print_file.write_all(chunk)?;
168168
}
169169

@@ -220,7 +220,7 @@ impl SecretWriter for PrinterSecretWriter {
220220
if i % 4 == 0 {
221221
print_file.write_all(&[CR, LF])?;
222222
}
223-
print_file.write_all(&[b'\t'])?;
223+
print_file.write_all(b"\t")?;
224224
print_file.write_all(chunk)?;
225225
}
226226

0 commit comments

Comments
 (0)