From f162d641a71b95f7febab0c04aba7d64182df38b Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 7 Apr 2025 14:17:19 +0100 Subject: 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 --- crates/atuin-scripts/Cargo.toml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 crates/atuin-scripts/Cargo.toml (limited to 'crates/atuin-scripts/Cargo.toml') diff --git a/crates/atuin-scripts/Cargo.toml b/crates/atuin-scripts/Cargo.toml new file mode 100644 index 00000000..4d868757 --- /dev/null +++ b/crates/atuin-scripts/Cargo.toml @@ -0,0 +1,33 @@ +[package] +name = "atuin-scripts" +edition = "2024" +version = { workspace = true } +description = "The scripts crate for Atuin" + +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.5.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.5.0-beta.1" } + +tracing = { workspace = true } +tracing-subscriber = { workspace = true } +rmp = { version = "0.8.14" } +uuid = { workspace = true } +eyre = { workspace = true } +tokio = { workspace = true } +serde = { workspace = true } +typed-builder = { workspace = true } +pretty_assertions = { workspace = true } +sql-builder = { workspace = true } +sqlx = { workspace = true } +tempfile = { workspace = true } +minijinja = { workspace = true } +serde_json = { workspace = true } \ No newline at end of file -- cgit v1.3.1