From 580399b26cdc03535b5b9aacb9b74b06ff9aebbf 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 --- pbs-api-types/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pbs-api-types/Cargo.toml b/pbs-api-types/Cargo.toml index ee64b6e1..0b60e1cb 100644 --- a/pbs-api-types/Cargo.toml +++ b/pbs-api-types/Cargo.toml @@ -14,8 +14,8 @@ regex = "1.5.5" serde = { version = "1.0", features = ["derive"] } serde_plain = "1" -proxmox-lang = "1.0.0" -proxmox-schema = { version = "1.2.1", features = [ "api-macro" ] } -proxmox-serde = "0.1" -proxmox-time = "1.1.1" -proxmox-uuid = { version = "1.0.0", features = [ "serde" ] } +proxmox-lang.workspace=true +proxmox-schema = { workspace = true, features = [ "api-macro" ] } +proxmox-serde.workspace = true +proxmox-time.workspace = true +proxmox-uuid = { workspace = true, features = [ "serde" ] }