diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2025-04-07 14:17:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-07 14:17:19 +0100 |
| commit | f162d641a71b95f7febab0c04aba7d64182df38b (patch) | |
| tree | 37526cbb5a3eedbf5626060ae315de2e67f9f304 /Cargo.lock | |
| parent | fix: fish up binding bug (#2677) (diff) | |
| download | atuin-f162d641a71b95f7febab0c04aba7d64182df38b.zip | |
feat: support storing, syncing and executing scripts (#2644)
* feat: add atuin-scripts crate
* initial
* define record types
* wip
* wip
* mvp
* add show command, make stdin work
* rewrite execution to use shebang and script file ALWAYS
* rename show -> get, allow fetching script only
* fmt
* clippy
* a bunch of fixes to the edits
* update lock
* variables
* fmt
* clippy
* pr feedback
* fmt
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -230,6 +230,7 @@ dependencies = [ "atuin-daemon", "atuin-dotfiles", "atuin-history", + "atuin-scripts", "atuin-server", "atuin-server-postgres", "clap", @@ -254,6 +255,7 @@ dependencies = [ "serde", "serde_json", "sysinfo", + "tempfile", "time", "tiny-bip39", "tokio", @@ -394,6 +396,28 @@ dependencies = [ ] [[package]] +name = "atuin-scripts" +version = "18.5.0-beta.2" +dependencies = [ + "atuin-client", + "atuin-common", + "eyre", + "minijinja", + "pretty_assertions", + "rmp", + "serde", + "serde_json", + "sql-builder", + "sqlx", + "tempfile", + "tokio", + "tracing", + "tracing-subscriber", + "typed-builder", + "uuid", +] + +[[package]] name = "atuin-server" version = "18.5.0-beta.2" dependencies = [ @@ -2523,6 +2547,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] +name = "minijinja" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98642a6dfca91122779a307b77cd07a4aa951fbe32232aaf5bad9febc66be754" +dependencies = [ + "serde", +] + +[[package]] name = "minimal-lexical" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" |
