From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 0300C1FF141 for ; Tue, 05 May 2026 10:32:47 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 49D631A5D4; Tue, 5 May 2026 10:32:52 +0200 (CEST) From: Arthur Bied-Charreton To: pve-devel@lists.proxmox.com, pbs-devel@lists.proxmox.com Subject: [PATCH proxmox v5 01/27] add oauth2 and ureq to workspace dependencies Date: Tue, 5 May 2026 10:32:22 +0200 Message-ID: <20260505083248.36450-2-a.bied-charreton@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260505083248.36450-1-a.bied-charreton@proxmox.com> References: <20260505083248.36450-1-a.bied-charreton@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.120 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 KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods RDNS_NONE 0.793 Delivered to internal network by a host with no rDNS SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record Message-ID-Hash: O77USLELCY5SLR32PQ4AQCEOULYCE5FS X-Message-ID-Hash: O77USLELCY5SLR32PQ4AQCEOULYCE5FS X-MailFrom: abied-charreton@jett.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 Backup Server development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: oauth2 will be needed by proxmox-notify for XOAUTH2 support and ureq is used by multiple crates in proxmox.git. Pull them in as workspace dependencies and update proxmox-openid and proxmox-http accordingly. Signed-off-by: Arthur Bied-Charreton --- This patch was added in a previous version of the series where proxmox-notify was using ureq. This is no longer the case, so the ureq change is not strictly related to this series. Still leaving it in here as a general improvement. Cargo.toml | 2 ++ proxmox-http/Cargo.toml | 2 +- proxmox-openid/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cf49a8b0..37fc1f12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -118,6 +118,7 @@ native-tls = "0.2" nix = "0.29" nom = "7" # used by proxmox-disks, can be replaced by OnceLock from std once it supports get_or_try_init +oauth2 = { version = "5", default-features = false } once_cell = "1.3.1" openssl = "0.10" pam-sys = "0.5" @@ -148,6 +149,7 @@ tracing-journald = "0.3.1" tracing-log = { version = "0.2", default-features = false } tracing-subscriber = "0.3.16" udev = "0.9" +ureq = { version = "3", default-features = false } url = "2.2" walkdir = "2" zstd = "0.13" diff --git a/proxmox-http/Cargo.toml b/proxmox-http/Cargo.toml index 66b11650..dff2a04a 100644 --- a/proxmox-http/Cargo.toml +++ b/proxmox-http/Cargo.toml @@ -27,7 +27,7 @@ sync_wrapper = { workspace = true, optional = true } tokio = { workspace = true, features = [], optional = true } tokio-openssl = { workspace = true, optional = true } tower-service = { workspace = true, optional = true } -ureq = { version = "3.0", features = ["native-tls"], optional = true, default-features = false } +ureq = { features = ["native-tls"], optional = true, default-features = false, workspace = true } url = { workspace = true, optional = true } proxmox-async = { workspace = true, optional = true } diff --git a/proxmox-openid/Cargo.toml b/proxmox-openid/Cargo.toml index 5b031800..79329451 100644 --- a/proxmox-openid/Cargo.toml +++ b/proxmox-openid/Cargo.toml @@ -22,7 +22,7 @@ thiserror.workspace = true native-tls.workspace = true openidconnect = { version = "4", default-features = false, features = ["accept-rfc3339-timestamps"] } -ureq = { version = "3", default-features = false, features = ["native-tls", "gzip"] } +ureq = { default-features = false, features = ["native-tls", "gzip"], workspace = true } proxmox-time.workspace = true proxmox-sys = { workspace = true, features = ["timer"] } -- 2.47.3