From d1ce01679b22b99321fe7407e8ee35de8cf99bd5 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 30 Apr 2024 13:16:50 +0100 Subject: feat(history): create atuin-history, add stats to it (#1990) * feat(history): create atuin-history, add stats to it I'd like to eventually pull all the history stuff into this crate. Stats are a nice start, as I'd like to use them from the UI anyways. * lock * clippy --- Cargo.lock | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 4c242691..d12dedf9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -186,6 +186,7 @@ dependencies = [ "atuin-client", "atuin-common", "atuin-dotfiles", + "atuin-history", "atuin-server", "atuin-server-postgres", "base64 0.21.7", @@ -306,6 +307,36 @@ dependencies = [ "tokio", ] +[[package]] +name = "atuin-history" +version = "0.1.0" +dependencies = [ + "async-trait", + "atuin-client", + "atuin-common", + "base64 0.21.7", + "crossterm", + "directories", + "eyre", + "fs-err", + "futures-util", + "indicatif", + "interim", + "itertools", + "log", + "semver", + "serde", + "serde_json", + "sysinfo", + "time", + "tokio", + "tracing", + "unicode-segmentation", + "unicode-width", + "uuid", + "whoami", +] + [[package]] name = "atuin-server" version = "18.2.0" -- cgit v1.3.1