aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2026-02-26 15:37:33 -0800
committerGitHub <noreply@github.com>2026-02-26 15:37:33 -0800
commit5fea0bb2387297b7d6de2187060cb24c6c5014b4 (patch)
tree13d8fdb3d8cc9586f0520261290b9d513bc7ce68
parentchore: update changelog (diff)
downloadatuin-5fea0bb2387297b7d6de2187060cb24c6c5014b4.zip
chore: use workspace versions (#3210)
<!-- Thank you for making a PR! Bug fixes are always welcome, but if you're adding a new feature or changing an existing one, we'd really appreciate if you open an issue, post on the forum, or drop in on Discord --> ## Checks - [ ] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing
Diffstat (limited to '')
-rw-r--r--Cargo.toml11
-rw-r--r--crates/atuin-ai/Cargo.toml4
-rw-r--r--crates/atuin-server/Cargo.toml8
-rw-r--r--crates/atuin/Cargo.toml16
4 files changed, 25 insertions, 14 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d3e2bffc..c1e100bd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,6 +15,17 @@ readme = "README.md"
[workspace.dependencies]
async-trait = "0.1.58"
+atuin-client = { path = "crates/atuin-client", version = "18.13.0-beta.2" }
+atuin-common = { path = "crates/atuin-common", version = "18.13.0-beta.2" }
+atuin-daemon = { path = "crates/atuin-daemon", version = "18.13.0-beta.2" }
+atuin-dotfiles = { path = "crates/atuin-dotfiles", version = "18.13.0-beta.2" }
+atuin-history = { path = "crates/atuin-history", version = "18.13.0-beta.2" }
+atuin-kv = { path = "crates/atuin-kv", version = "18.13.0-beta.2" }
+atuin-scripts = { path = "crates/atuin-scripts", version = "18.13.0-beta.2" }
+atuin-server = { path = "crates/atuin-server", version = "18.13.0-beta.2" }
+atuin-server-database = { path = "crates/atuin-server-database", version = "18.13.0-beta.2" }
+atuin-server-postgres = { path = "crates/atuin-server-postgres", version = "18.13.0-beta.2" }
+atuin-server-sqlite = { path = "crates/atuin-server-sqlite", version = "18.13.0-beta.2" }
base64 = "0.22"
crossterm = "0.29.0"
log = "0.4"
diff --git a/crates/atuin-ai/Cargo.toml b/crates/atuin-ai/Cargo.toml
index 42442395..1b81646c 100644
--- a/crates/atuin-ai/Cargo.toml
+++ b/crates/atuin-ai/Cargo.toml
@@ -13,8 +13,8 @@ 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.13.0-beta.2" }
-atuin-common = { path = "../atuin-common", version = "18.13.0-beta.2" }
+atuin-client = { workspace = true }
+atuin-common = { workspace = true }
tokio = { workspace = true }
eyre = { workspace = true }
clap = { workspace = true, features = ["derive", "env"] }
diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml
index 58c2c412..9627cb7a 100644
--- a/crates/atuin-server/Cargo.toml
+++ b/crates/atuin-server/Cargo.toml
@@ -19,10 +19,10 @@ name = "atuin-server"
path = "src/bin/main.rs"
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.13.0-beta.2" }
-atuin-server-database = { path = "../atuin-server-database", version = "18.13.0-beta.2" }
-atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.13.0-beta.2" }
-atuin-server-sqlite = { path = "../atuin-server-sqlite", version = "18.13.0-beta.2" }
+atuin-common = { workspace = true }
+atuin-server-database = { workspace = true }
+atuin-server-postgres = { workspace = true }
+atuin-server-sqlite = { workspace = true }
tracing = { workspace = true }
time = { workspace = true }
diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml
index d57fab75..7e438b38 100644
--- a/crates/atuin/Cargo.toml
+++ b/crates/atuin/Cargo.toml
@@ -42,12 +42,12 @@ check-update = ["atuin-client/check-update"]
[dependencies]
atuin-client = { path = "../atuin-client", version = "18.13.0-beta.2", optional = true, default-features = false }
-atuin-common = { path = "../atuin-common", version = "18.13.0-beta.2" }
-atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.13.0-beta.2" }
-atuin-history = { path = "../atuin-history", version = "18.13.0-beta.2" }
+atuin-common = { workspace = true }
+atuin-dotfiles = { workspace = true }
+atuin-history = { workspace = true }
atuin-daemon = { path = "../atuin-daemon", version = "18.13.0-beta.2", optional = true, default-features = false }
-atuin-scripts = { path = "../atuin-scripts", version = "18.13.0-beta.2" }
-atuin-kv = { path = "../atuin-kv", version = "18.13.0-beta.2" }
+atuin-scripts = { workspace = true }
+atuin-kv = { workspace = true }
log = { workspace = true }
time = { workspace = true }
@@ -103,6 +103,6 @@ tracing-tree = "0.4"
# Integration tests in tests/ spin up a test server to verify sync functionality.
# TODO: Consider moving these tests to atuin-server crate instead (client would become a dev dep there)
-atuin-server = { path = "../atuin-server", version = "18.13.0-beta.2" }
-atuin-server-database = { path = "../atuin-server-database", version = "18.13.0-beta.2" }
-atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.13.0-beta.2" }
+atuin-server = { workspace = true }
+atuin-server-database = { workspace = true }
+atuin-server-postgres = { workspace = true }