diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-02-15 19:07:08 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-15 19:07:08 +0000 |
| commit | 20f329646894e11e47e7e516b076fa23976c0d5a (patch) | |
| tree | fc0add6e23c4a4a8fd4ae85520aafc5576848590 /Cargo.lock | |
| parent | feat: add 'ignored_commands' option to stats (#1722) (diff) | |
| download | atuin-20f329646894e11e47e7e516b076fa23976c0d5a.zip | |
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
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -185,6 +185,7 @@ dependencies = [ "async-trait", "atuin-client", "atuin-common", + "atuin-config", "atuin-server", "atuin-server-postgres", "base64 0.21.7", @@ -287,6 +288,19 @@ dependencies = [ ] [[package]] +name = "atuin-config" +version = "0.1.0" +dependencies = [ + "atuin-client", + "atuin-common", + "crypto_secretbox", + "eyre", + "rand", + "rmp", + "tokio", +] + +[[package]] name = "atuin-server" version = "18.0.1" dependencies = [ |
