diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-04-30 13:16:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-30 13:16:50 +0100 |
| commit | d1ce01679b22b99321fe7407e8ee35de8cf99bd5 (patch) | |
| tree | 1d583508eb01a698121e56c33a43af1684022c16 /Cargo.lock | |
| parent | feat(ui/dotfiles): add vars (#1989) (diff) | |
| download | atuin-d1ce01679b22b99321fe7407e8ee35de8cf99bd5.zip | |
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
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -186,6 +186,7 @@ dependencies = [ "atuin-client", "atuin-common", "atuin-dotfiles", + "atuin-history", "atuin-server", "atuin-server-postgres", "base64 0.21.7", @@ -307,6 +308,36 @@ dependencies = [ ] [[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" dependencies = [ |
