We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18fc9f9 commit 3944407Copy full SHA for 3944407
rust-toolchain.toml
@@ -1,2 +1,2 @@
1
[toolchain]
2
-channel = "1.79"
+channel = "1.81"
src/secret_writer.rs
@@ -163,7 +163,7 @@ impl SecretWriter for PrinterSecretWriter {
163
if i % 4 == 0 {
164
print_file.write_all(&[CR, LF])?;
165
}
166
- print_file.write_all(&[b'\t'])?;
+ print_file.write_all(b"\t")?;
167
print_file.write_all(chunk)?;
168
169
@@ -220,7 +220,7 @@ impl SecretWriter for PrinterSecretWriter {
220
221
222
223
224
225
226
0 commit comments