From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ronja.mits.lan by ronja.mits.lan with LMTP id YPgxL7nvc2beLgAAxxbTJA (envelope-from ); Thu, 20 Jun 2024 11:00:41 +0200 Received: from proxmox-new.maurer-it.com (unknown [192.168.2.33]) by ronja.mits.lan (Postfix) with ESMTPS id A22DFF645D5; Thu, 20 Jun 2024 11:00:41 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 873A447D43; Thu, 20 Jun 2024 11:00:41 +0200 (CEST) Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by proxmox-new.maurer-it.com (Proxmox) with ESMTPS; Thu, 20 Jun 2024 11:00:40 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 8987B122E3; Thu, 20 Jun 2024 11:00:40 +0200 (CEST) From: Maximiliano Sandoval To: pbs-devel@lists.proxmox.com Date: Thu, 20 Jun 2024 11:00:05 +0200 Message-Id: <20240620090008.1823043-1-m.sandoval@proxmox.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Subject: [pbs-devel] [PATCH backup 1/4] cargo: use default-features X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox Backup Server development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pbs-devel-bounces@lists.proxmox.com Sender: "pbs-devel" X-SPAM-LEVEL: Spam detection results: 0 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 MAILING_LIST_MULTI -2 Multiple indicators imply a widely-seen list manager RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust 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 T_SCC_BODY_TEXT_LINE -0.01 - Fixes the compile-time warning: warning: Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition (in the `proxmox-router` dependency) Signed-off-by: Maximiliano Sandoval --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f31ce406..abbde299 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,7 +69,7 @@ proxmox-notify = "0.4" proxmox-openid = "0.10.0" proxmox-rest-server = { version = "0.5.1", features = [ "templates" ] } # some use "cli", some use "cli" and "server", pbs-config uses nothing -proxmox-router = { version = "2.0.0", default_features = false } +proxmox-router = { version = "2.0.0", default-features = false } proxmox-rrd = { version = "0.1" } # everything but pbs-config and pbs-client use "api-macro" proxmox-schema = "3" -- 2.39.2 _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel