From 8dbc2d73118a2001a6e0d2b971c957f419531bfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Fri, 9 Dec 2022 13:22:58 +0100 Subject: [PATCH] switch regular dependencies to workspace ones MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit where applicable. notable changes: - serde now uses 'derive' feature across the board - serde removed from pbs-tools (not used) - openssl bumped to 0.40 (and patched comment removed) - removed invalid zstd comment Signed-off-by: Fabian Grünbichler --- pbs-api-types/Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pbs-api-types/Cargo.toml b/pbs-api-types/Cargo.toml index 0b60e1cb..94740c70 100644 --- a/pbs-api-types/Cargo.toml +++ b/pbs-api-types/Cargo.toml @@ -6,12 +6,12 @@ edition.workspace = true description = "general API type helpers for PBS" [dependencies] -anyhow = "1.0" -hex = "0.4.3" -lazy_static = "1.4" -percent-encoding = "2.1" -regex = "1.5.5" -serde = { version = "1.0", features = ["derive"] } +anyhow.workspace = true +hex.workspace = true +lazy_static.workspace = true +percent-encoding.workspace = true +regex.workspace = true +serde.workspace = true serde_plain = "1" proxmox-lang.workspace=true