From 20f329646894e11e47e7e516b076fa23976c0d5a Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Thu, 15 Feb 2024 19:07:08 +0000 Subject: feat: support syncing aliases (#1721) * feat: support syncing aliases This is definitely not yet finished, but works for zsh right now. TODO: 1. Support other shells 2. Cache the alias generation, so we don't have to do a bunch of work at shell init time * correct imports * fix clippy errors * fix tests * add the other shells * support xonsh * add delete * update rust, then make clippy happy once more * omfg fmt too --- atuin-config/Cargo.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 atuin-config/Cargo.toml (limited to 'atuin-config/Cargo.toml') diff --git a/atuin-config/Cargo.toml b/atuin-config/Cargo.toml new file mode 100644 index 00000000..b6fffbf4 --- /dev/null +++ b/atuin-config/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "atuin-config" +edition = "2021" +version = "0.1.0" # intentionally not the same as the rest + +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-common = { path = "../atuin-common", version = "18.0.1" } +atuin-client = { path = "../atuin-client", version = "18.0.1" } + +eyre = { workspace = true } +tokio = { workspace = true } +rmp = { version = "0.8.11" } +rand = { workspace = true } +crypto_secretbox = "0.1.1" -- cgit v1.3.1