aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-scripts/Cargo.toml
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2025-04-07 14:17:19 +0100
committerGitHub <noreply@github.com>2025-04-07 14:17:19 +0100
commitf162d641a71b95f7febab0c04aba7d64182df38b (patch)
tree37526cbb5a3eedbf5626060ae315de2e67f9f304 /crates/atuin-scripts/Cargo.toml
parentfix: fish up binding bug (#2677) (diff)
downloadatuin-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 'crates/atuin-scripts/Cargo.toml')
-rw-r--r--crates/atuin-scripts/Cargo.toml33
1 files changed, 33 insertions, 0 deletions
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