From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 77ED71FF13B for ; Wed, 22 Apr 2026 10:33:47 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 5C00AF8A0; Wed, 22 Apr 2026 10:33:47 +0200 (CEST) From: Lukas Wagner To: pdm-devel@lists.proxmox.com Subject: [PATCH datacenter-manager] remove unused dependencies Date: Wed, 22 Apr 2026 10:33:42 +0200 Message-ID: <20260422083342.138982-1-l.wagner@proxmox.com> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1776846736865 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.054 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: M6C4MYSTLC22EX33OSZK7LLE7NE5YSCK X-Message-ID-Hash: M6C4MYSTLC22EX33OSZK7LLE7NE5YSCK X-MailFrom: l.wagner@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Datacenter Manager development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Signed-off-by: Lukas Wagner --- Notes: Stumbled over these when checking our usage of handlebars in PDM. Checked by hand, so I might not have caught everything. Checked a `make sbuild`, builds fine here. Cargo.toml | 10 ---------- debian/control | 4 ---- lib/pdm-client/Cargo.toml | 1 - server/Cargo.toml | 4 ---- 4 files changed, 19 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ec2aa3dc..0f784c02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -100,11 +100,8 @@ proxmox-fido2 = { path = "cli/proxmox-fido2" } anyhow = "1.0" async-stream = "0.3" async-trait = "0.1" -bitflags = "2.4" const_format = "0.2" futures = "0.3" -h2 = { version = "0.4", features = [ "stream" ] } -handlebars = "5.1" hex = "0.4.3" http = "1" http-body-util = "0.1.2" @@ -122,17 +119,10 @@ serde = { version = "1.0", features = ["derive"] } serde_cbor = "0.11.1" serde_json = "1.0" serde_plain = "1" -syslog = "6" -termcolor = "1.1.2" thiserror = "1.0" tokio = "1.6" -tokio-openssl = "0.6.1" -tokio-stream = "0.1.0" -tokio-util = { version = "0.7", features = [ "io" ] } -tower-service = "0.3.0" tracing = "0.1" url = "2.1" -walkdir = "2" webauthn-rs-core = "0.5" xdg = "2.2" zstd = { version = "0.13" } diff --git a/debian/control b/debian/control index 4ddc9efc..3f14090e 100644 --- a/debian/control +++ b/debian/control @@ -103,7 +103,6 @@ Build-Depends: debhelper-compat (= 13), librust-proxmox-time-api-1+default-dev, librust-proxmox-time-api-1+impl-dev, librust-proxmox-upgrade-checks-1+default-dev, - librust-proxmox-uuid-1+default-dev, librust-pve-api-types-8.1+client-dev (>= 8.1.5-~~), librust-pve-api-types-8.1+default-dev (>= 8.1.5-~~), librust-regex-1+default-dev (>= 1.5.5-~~), @@ -112,8 +111,6 @@ Build-Depends: debhelper-compat (= 13), librust-serde-cbor-0.11+default-dev (>= 0.11.1-~~), librust-serde-json-1+default-dev, librust-serde-plain-1+default-dev, - librust-syslog-6+default-dev, - librust-termcolor-1+default-dev (>= 1.1.2-~~), librust-tokio-1+default-dev (>= 1.6-~~), librust-tokio-1+fs-dev (>= 1.6-~~), librust-tokio-1+io-std-dev (>= 1.6-~~), @@ -126,7 +123,6 @@ Build-Depends: debhelper-compat (= 13), librust-tokio-1+rt-multi-thread-dev (>= 1.6-~~), librust-tokio-1+signal-dev (>= 1.6-~~), librust-tokio-1+time-dev (>= 1.6-~~), - librust-tokio-stream-0.1+default-dev, librust-tracing-0.1+default-dev, librust-url-2+default-dev (>= 2.1-~~), librust-webauthn-rs-core-0.5+default-dev, diff --git a/lib/pdm-client/Cargo.toml b/lib/pdm-client/Cargo.toml index fe5ddf76..bb41b87b 100644 --- a/lib/pdm-client/Cargo.toml +++ b/lib/pdm-client/Cargo.toml @@ -9,7 +9,6 @@ license.workspace = true repository.workspace = true [dependencies] -percent-encoding.workspace = true serde.workspace = true serde_json.workspace = true diff --git a/server/Cargo.toml b/server/Cargo.toml index 6969549f..0d6371d1 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -27,10 +27,7 @@ openssl.workspace = true percent-encoding.workspace = true serde.workspace = true serde_json.workspace = true -serde_plain.workspace = true -syslog.workspace = true tokio = { workspace = true, features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] } -tokio-stream.workspace = true tracing.workspace = true url.workspace = true zstd.workspace = true @@ -60,7 +57,6 @@ proxmox-sys = { workspace = true, features = [ "timer" ] } proxmox-systemd.workspace = true proxmox-tfa = { workspace = true, features = [ "api" ] } proxmox-time.workspace = true -proxmox-uuid.workspace = true proxmox-apt = { workspace = true, features = [ "cache" ] } proxmox-apt-api-types.workspace = true -- 2.47.3