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 8A7261FF38E for ; Tue, 28 May 2024 10:13:58 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 4A7F0107D7; Tue, 28 May 2024 10:14:14 +0200 (CEST) From: Christoph Heiss To: pve-devel@lists.proxmox.com Date: Tue, 28 May 2024 10:13:42 +0200 Message-ID: <20240528081359.832986-2-c.heiss@proxmox.com> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240528081359.832986-1-c.heiss@proxmox.com> References: <20240528081359.832986-1-c.heiss@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.012 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 T_SCC_BODY_TEXT_LINE -0.01 - URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [rust-lang.org, proxmox.com] Subject: [pve-devel] [PATCH installer 1/7] cargo: convert `anyhow` to workspace dependency X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" Signed-off-by: Christoph Heiss --- Cargo.toml | 2 ++ proxmox-auto-install-assistant/Cargo.toml | 2 +- proxmox-auto-installer/Cargo.toml | 2 +- proxmox-chroot/Cargo.toml | 2 +- proxmox-fetch-answer/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1e730ce..ec1deaf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,3 +9,5 @@ members = [ "proxmox-tui-installer", ] +[workspace.dependencies] +anyhow = "1.0" diff --git a/proxmox-auto-install-assistant/Cargo.toml b/proxmox-auto-install-assistant/Cargo.toml index eaca7f8..b30a157 100644 --- a/proxmox-auto-install-assistant/Cargo.toml +++ b/proxmox-auto-install-assistant/Cargo.toml @@ -11,7 +11,7 @@ exclude = [ "build", "debian" ] homepage = "https://www.proxmox.com" [dependencies] -anyhow = "1.0" +anyhow.workspace = true clap = { version = "4.0", features = ["derive"] } glob = "0.3" log = "0.4.20" diff --git a/proxmox-auto-installer/Cargo.toml b/proxmox-auto-installer/Cargo.toml index 4f54439..efb0fe3 100644 --- a/proxmox-auto-installer/Cargo.toml +++ b/proxmox-auto-installer/Cargo.toml @@ -11,7 +11,7 @@ exclude = [ "build", "debian" ] homepage = "https://www.proxmox.com" [dependencies] -anyhow = "1.0" +anyhow.workspace = true clap = { version = "4.0", features = ["derive"] } glob = "0.3" log = "0.4.20" diff --git a/proxmox-chroot/Cargo.toml b/proxmox-chroot/Cargo.toml index 43b96ff..6247baa 100644 --- a/proxmox-chroot/Cargo.toml +++ b/proxmox-chroot/Cargo.toml @@ -8,7 +8,7 @@ exclude = [ "build", "debian" ] homepage = "https://www.proxmox.com" [dependencies] -anyhow = "1.0" +anyhow.workspace = true clap = { version = "4.0", features = ["derive"] } nix = "0.26.1" proxmox-installer-common = { path = "../proxmox-installer-common" } diff --git a/proxmox-fetch-answer/Cargo.toml b/proxmox-fetch-answer/Cargo.toml index 964682a..881979b 100644 --- a/proxmox-fetch-answer/Cargo.toml +++ b/proxmox-fetch-answer/Cargo.toml @@ -13,7 +13,7 @@ homepage = "https://www.proxmox.com" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0" +anyhow.workspace = true hex = "0.4" log = "0.4.20" native-tls = "0.2" -- 2.44.0 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel