aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-ai/Cargo.toml
diff options
context:
space:
mode:
authorMichelle Tilley <michelle@michelletilley.net>2026-02-13 10:54:38 -0800
committerGitHub <noreply@github.com>2026-02-13 18:54:38 +0000
commite6a8bb033434541974262699c12e2805cc054153 (patch)
treeff682af16556266a9777b4d21c84aa66c55d015e /crates/atuin-ai/Cargo.toml
parentchore(deps): update to rust 1.93.1 (#3181) (diff)
downloadatuin-e6a8bb033434541974262699c12e2805cc054153.zip
feat: add Atuin AI inline CLI MVP (#3178)
Diffstat (limited to 'crates/atuin-ai/Cargo.toml')
-rw-r--r--crates/atuin-ai/Cargo.toml37
1 files changed, 37 insertions, 0 deletions
diff --git a/crates/atuin-ai/Cargo.toml b/crates/atuin-ai/Cargo.toml
new file mode 100644
index 00000000..2759349c
--- /dev/null
+++ b/crates/atuin-ai/Cargo.toml
@@ -0,0 +1,37 @@
+[package]
+name = "atuin-ai"
+edition = "2024"
+description = "ai library for atuin"
+
+rust-version = { workspace = true }
+version = { workspace = true }
+authors = { workspace = true }
+license = { workspace = true }
+homepage = { workspace = true }
+repository = { 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.12.1" }
+atuin-common = { path = "../atuin-common", version = "18.12.1" }
+tokio = { workspace = true }
+eyre = { workspace = true }
+clap = { workspace = true, features = ["derive", "env"] }
+tracing = { workspace = true }
+tracing-subscriber = { workspace = true, features = [
+ "ansi",
+ "fmt",
+ "registry",
+ "env-filter",
+] }
+directories = { workspace = true }
+tracing-appender = "0.2.4"
+reqwest = { workspace = true }
+serde = { workspace = true }
+serde_json = { workspace = true }
+crossterm = { workspace = true }
+ratatui = { workspace = true }
+
+[dev-dependencies]
+pretty_assertions = { workspace = true }