From 644099e8aefb2fcb6bf2dc71adbd43a68287ff2f Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Thu, 6 Nov 2025 16:16:43 -0800 Subject: chore: update to rust 1.91 (#2981) ## Checks - [ ] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing --- crates/atuin/src/command/client/search/inspector.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates') diff --git a/crates/atuin/src/command/client/search/inspector.rs b/crates/atuin/src/command/client/search/inspector.rs index 34d22eba..890f7ff7 100644 --- a/crates/atuin/src/command/client/search/inspector.rs +++ b/crates/atuin/src/command/client/search/inspector.rs @@ -138,8 +138,8 @@ pub fn draw_stats_table( format_duration(avg_duration), ]), Row::new(vec!["Exit".to_string(), history.exit.to_string()]), - Row::new(vec!["Directory".to_string(), history.cwd.to_string()]), - Row::new(vec!["Session".to_string(), history.session.to_string()]), + Row::new(vec!["Directory".to_string(), history.cwd.clone()]), + Row::new(vec!["Session".to_string(), history.session.clone()]), Row::new(vec!["Total runs".to_string(), stats.total.to_string()]), ]; -- cgit v1.3.1