From d75e305162a20800e9c36ee63174649918baf612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Fri, 9 Dec 2022 11:37:02 +0100 Subject: [PATCH] switch proxmox dependencies to workspace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit besides harmonizing versions, the only global change is that the tokio-io feature of pxar is now implied since its default anyway, instead of being spelled out. Signed-off-by: Fabian Grünbichler --- proxmox-rrd/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proxmox-rrd/Cargo.toml b/proxmox-rrd/Cargo.toml index c79fc4b3..0955b86f 100644 --- a/proxmox-rrd/Cargo.toml +++ b/proxmox-rrd/Cargo.toml @@ -7,7 +7,7 @@ license.workspace = true description = "Simple RRD database implementation." [dev-dependencies] -proxmox-router = "1.2.4" +proxmox-router = { workspace = true, features = ["cli", "server"] } [dependencies] anyhow = "1.0" @@ -21,6 +21,6 @@ serde_json = "1.0" serde_cbor = "0.11.1" #proxmox = { version = "0.15.3" } -proxmox-time = "1" -proxmox-schema = { version = "1.3.1", features = [ "api-macro" ] } -proxmox-sys = "0.4.1" +proxmox-time.workspace = true +proxmox-schema = { workspace = true, features = [ "api-macro" ] } +proxmox-sys.workspace = true