From 34a846a136b152658883e38f857dd919289b9183 Mon Sep 17 00:00:00 2001 From: Ahmed Hesham Abdelkader <23265119+ahmedhesham6@users.noreply.github.com> Date: Wed, 10 Jun 2026 13:41:51 +0200 Subject: [PATCH] fix(ak): specify version for stakpak-api dependency The bare path dependency on stakpak-api had no version requirement, which causes cargo publish to fail (crates.io requires a version for all dependencies). Switch to the workspace dependency like every other crate, which inherits version = "0.3.87". --- libs/ak/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ak/Cargo.toml b/libs/ak/Cargo.toml index 1ae6be93..8098d00d 100644 --- a/libs/ak/Cargo.toml +++ b/libs/ak/Cargo.toml @@ -17,7 +17,7 @@ regex = { workspace = true } globset = { workspace = true } grep-matcher = { workspace = true } grep-regex = { workspace = true } -stakpak-api = { path = "../api" } +stakpak-api = { workspace = true } tokio = { workspace = true } [dev-dependencies]