From 1cd6a842f76d6877292a8810c4cf1248b7d2fc45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Fri, 19 Aug 2022 14:20:58 +0200 Subject: [PATCH] subscription: add missing path dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Grünbichler --- proxmox-subscription/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxmox-subscription/Cargo.toml b/proxmox-subscription/Cargo.toml index 97a9115d..d58420a3 100644 --- a/proxmox-subscription/Cargo.toml +++ b/proxmox-subscription/Cargo.toml @@ -20,8 +20,8 @@ serde_json = "1.0" proxmox-http = { path = "../proxmox-http", version = "0.6.3", default_features = false, features = ["client-trait", "http-helpers"] } proxmox-serde = { path = "../proxmox-serde", version = "0.1.1", features = ["serde_json"]} -proxmox-sys = "0.4" -proxmox-time = "1.1" +proxmox-sys = { path = "../proxmox-sys", version = "0.4" } +proxmox-time = { path = "../proxmox-time", version = "1.1" } proxmox-schema = { path = "../proxmox-schema", version = "1.3.3", features = ["api-macro"], optional = true }