From b659deb529dcc5d26bb47c568a357a469ecf1389 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 --- proxmox-rrd/Cargo.toml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/proxmox-rrd/Cargo.toml b/proxmox-rrd/Cargo.toml index 0955b86f..b49809fd 100644 --- a/proxmox-rrd/Cargo.toml +++ b/proxmox-rrd/Cargo.toml @@ -10,17 +10,16 @@ description = "Simple RRD database implementation." proxmox-router = { workspace = true, features = ["cli", "server"] } [dependencies] -anyhow = "1.0" -bitflags = "1.2.1" -crossbeam-channel = "0.5" -libc = "0.2" -log = "0.4.17" -nix = "0.24" -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" +anyhow.workspace = true +bitflags.workspace = true +crossbeam-channel.workspace = true +libc.workspace = true +log.workspace = true +nix.workspace = true +serde.workspace = true +serde_json.workspace = true serde_cbor = "0.11.1" -#proxmox = { version = "0.15.3" } proxmox-time.workspace = true proxmox-schema = { workspace = true, features = [ "api-macro" ] } proxmox-sys.workspace = true