From 88f3ccb96c0d994f9560f84154ac73474e0ff002 Mon Sep 17 00:00:00 2001 From: Gabriel Goller Date: Tue, 9 Jul 2024 12:54:26 +0200 Subject: [PATCH] cargo: add local dependencies Add local dependencies for new crates `proxmox-apt-api-types` and `proxmox-config-digest`. Also fix order of deps. Signed-off-by: Gabriel Goller --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8120526a6..ca07cbef0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,13 +53,13 @@ path = "src/lib.rs" [workspace.dependencies] # proxmox workspace -proxmox-config-digest = "0.1.0" proxmox-apt = { version = "0.11", features = [ "cache" ] } proxmox-apt-api-types = "1.0" proxmox-async = "0.4" proxmox-auth-api = "0.4" proxmox-borrow = "1" proxmox-compression = "0.2" +proxmox-config-digest = "0.1.0" proxmox-fuse = "0.1.3" proxmox-http = { version = "0.9.0", features = [ "client", "http-helpers", "websocket" ] } # see below proxmox-human-byte = "0.1" @@ -252,10 +252,12 @@ proxmox-rrd.workspace = true [patch.crates-io] #proxmox-apt = { path = "../proxmox/proxmox-apt" } +#proxmox-apt-api = { path = "../proxmox/proxmox-apt-api-types" } #proxmox-async = { path = "../proxmox/proxmox-async" } #proxmox-auth-api = { path = "../proxmox/proxmox-auth-api" } #proxmox-borrow = { path = "../proxmox/proxmox-borrow" } #proxmox-compression = { path = "../proxmox/proxmox-compression" } +#proxmox-config-digest = { path = "../proxmox/proxmox-config-digest" } #proxmox-fuse = { path = "../proxmox-fuse" } #proxmox-http = { path = "../proxmox/proxmox-http" } #proxmox-human-byte = { path = "../proxmox/proxmox-human-byte" }