aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
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 /Cargo.lock
parentchore(deps): update to rust 1.93.1 (#3181) (diff)
downloadatuin-e6a8bb033434541974262699c12e2805cc054153.zip
feat: add Atuin AI inline CLI MVP (#3178)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock42
1 files changed, 42 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 96510b84..249068f2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -262,6 +262,27 @@ dependencies = [
]
[[package]]
+name = "atuin-ai"
+version = "18.12.1"
+dependencies = [
+ "atuin-client",
+ "atuin-common",
+ "clap",
+ "crossterm",
+ "directories",
+ "eyre",
+ "pretty_assertions",
+ "ratatui",
+ "reqwest",
+ "serde",
+ "serde_json",
+ "tokio",
+ "tracing",
+ "tracing-appender",
+ "tracing-subscriber",
+]
+
+[[package]]
name = "atuin-client"
version = "18.12.1"
dependencies = [
@@ -953,6 +974,15 @@ dependencies = [
]
[[package]]
+name = "crossbeam-channel"
+version = "0.5.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
+dependencies = [
+ "crossbeam-utils",
+]
+
+[[package]]
name = "crossbeam-deque"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -5103,6 +5133,18 @@ dependencies = [
]
[[package]]
+name = "tracing-appender"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf"
+dependencies = [
+ "crossbeam-channel",
+ "thiserror 2.0.18",
+ "time",
+ "tracing-subscriber",
+]
+
+[[package]]
name = "tracing-attributes"
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"