aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-client/src/encryption.rs
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2025-07-22 16:03:20 +0200
committerGitHub <noreply@github.com>2025-07-22 16:03:20 +0200
commite7819d258a29eeec0e9255a961fee3b44735afab (patch)
treee76946f1906d29e999485f3b2bd424fc7375037f /crates/atuin-client/src/encryption.rs
parentUpdate indicatif to 0.18.0 (#2833) (diff)
downloadatuin-e7819d258a29eeec0e9255a961fee3b44735afab.zip
chore: update to rust 1.88 (#2815)
* chore: update to rust 1.88 * clippy + fmt * update ci version * update flake
Diffstat (limited to 'crates/atuin-client/src/encryption.rs')
-rw-r--r--crates/atuin-client/src/encryption.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/atuin-client/src/encryption.rs b/crates/atuin-client/src/encryption.rs
index a1e844e7..a56dbd09 100644
--- a/crates/atuin-client/src/encryption.rs
+++ b/crates/atuin-client/src/encryption.rs
@@ -300,7 +300,7 @@ mod test {
// test decryption works
// this should pass
match decrypt(e1, &key1) {
- Err(e) => panic!("failed to decrypt, got {}", e),
+ Err(e) => panic!("failed to decrypt, got {e}"),
Ok(h) => assert_eq!(h, history),
};