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 /crates/atuin-history/Cargo.toml | |
| 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 'crates/atuin-history/Cargo.toml')
| -rw-r--r-- | crates/atuin-history/Cargo.toml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml new file mode 100644 index 00000000..0927230c --- /dev/null +++ b/crates/atuin-history/Cargo.toml @@ -0,0 +1,40 @@ +[package] +name = "atuin-history" +edition = "2021" +version = "0.1.0" + +authors.workspace = true +rust-version.workspace = true +license.workspace = true +homepage.workspace = true +repository.workspace = true +readme.workspace = true + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +atuin-client = { path = "../atuin-client", version = "18.2.0" } +atuin-common = { path = "../atuin-common", version = "18.2.0" } + +log = { workspace = true } +time = { workspace = true } +eyre = { workspace = true } +directories = { workspace = true } +indicatif = "0.17.5" +serde = { workspace = true } +serde_json = { workspace = true } +crossterm = { version = "0.27", features = ["use-dev-tty"] } +unicode-width = "0.1" +itertools = { workspace = true } +tokio = { workspace = true } +async-trait = { workspace = true } +interim = { workspace = true } +base64 = { workspace = true } +fs-err = { workspace = true } +whoami = { workspace = true } +semver = { workspace = true } +futures-util = "0.3" +tracing = "0.1" +uuid = { workspace = true } +unicode-segmentation = "1.11.0" +sysinfo = "0.30.7" |
