From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <pve-devel-bounces@lists.proxmox.com>
Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68])
	by lore.proxmox.com (Postfix) with ESMTPS id 9620E1FF164
	for <inbox@lore.proxmox.com>; Fri, 28 Feb 2025 10:27:50 +0100 (CET)
Received: from firstgate.proxmox.com (localhost [127.0.0.1])
	by firstgate.proxmox.com (Proxmox) with ESMTP id D9FE79187;
	Fri, 28 Feb 2025 10:27:46 +0100 (CET)
From: Christoph Heiss <c.heiss@proxmox.com>
To: pve-devel@lists.proxmox.com
Date: Fri, 28 Feb 2025 10:27:31 +0100
Message-ID: <20250228092738.94539-1-c.heiss@proxmox.com>
X-Mailer: git-send-email 2.47.1
MIME-Version: 1.0
X-SPAM-LEVEL: Spam detection results:  0
 AWL 0.026 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
 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to
 Validity was blocked. See
 https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more
 information.
 RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to
 Validity was blocked. See
 https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more
 information.
 RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to
 Validity was blocked. See
 https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more
 information.
 SPF_HELO_NONE           0.001 SPF: HELO does not publish an SPF Record
 SPF_PASS               -0.001 SPF: sender matches SPF record
 URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See
 http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more
 information. [proxmox-auto-installer.rs, mod.rs, answer.rs, timezone.rs,
 setup.rs, log.rs, options.rs, http.rs, parse-answer.rs, main.rs, partition.rs,
 bootdisk.rs, utils.rs, sysinfo.rs]
Subject: [pve-devel] [PATCH installer 0/2] update to 2024 edition,
 run cargo fmt
X-BeenThere: pve-devel@lists.proxmox.com
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Proxmox VE development discussion <pve-devel.lists.proxmox.com>
List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pve-devel>, 
 <mailto:pve-devel-request@lists.proxmox.com?subject=unsubscribe>
List-Archive: <http://lists.proxmox.com/pipermail/pve-devel/>
List-Post: <mailto:pve-devel@lists.proxmox.com>
List-Help: <mailto:pve-devel-request@lists.proxmox.com?subject=help>
List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel>, 
 <mailto:pve-devel-request@lists.proxmox.com?subject=subscribe>
Reply-To: Proxmox VE development discussion <pve-devel@lists.proxmox.com>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: pve-devel-bounces@lists.proxmox.com
Sender: "pve-devel" <pve-devel-bounces@lists.proxmox.com>

As it says on the tin. First updates (and unifies) the edition across the
workspace to 2024, afterwards let `cargo fmt` rip through.

Christoph Heiss (2):
  tree-wide: rust: update to 2024 edition
  tree-wide: rust: run cargo fmt

 Cargo.toml                                     |  1 +
 proxmox-auto-install-assistant/Cargo.toml      |  2 +-
 proxmox-auto-install-assistant/src/main.rs     | 12 +++++++-----
 proxmox-auto-installer/Cargo.toml              |  2 +-
 proxmox-auto-installer/src/answer.rs           |  6 +++---
 .../src/bin/proxmox-auto-installer.rs          | 11 +++++------
 proxmox-auto-installer/src/log.rs              |  2 +-
 proxmox-auto-installer/src/sysinfo.rs          |  4 ++--
 proxmox-auto-installer/src/utils.rs            | 18 ++++++++++++------
 proxmox-auto-installer/tests/parse-answer.rs   |  2 +-
 proxmox-chroot/Cargo.toml                      |  2 +-
 proxmox-chroot/src/main.rs                     | 14 +++++++++-----
 proxmox-fetch-answer/Cargo.toml                |  2 +-
 proxmox-fetch-answer/src/fetch_plugins/http.rs |  2 +-
 .../src/fetch_plugins/partition.rs             |  2 +-
 proxmox-fetch-answer/src/main.rs               |  4 ++--
 proxmox-installer-common/Cargo.toml            |  2 +-
 proxmox-installer-common/src/options.rs        |  2 +-
 proxmox-installer-common/src/setup.rs          |  2 +-
 proxmox-installer-common/src/sysinfo.rs        |  2 +-
 proxmox-installer-common/src/utils.rs          |  6 +-----
 proxmox-post-hook/Cargo.toml                   |  2 +-
 proxmox-post-hook/src/main.rs                  |  6 +++---
 proxmox-tui-installer/Cargo.toml               |  2 +-
 proxmox-tui-installer/src/main.rs              |  8 ++++----
 proxmox-tui-installer/src/options.rs           |  4 ++--
 proxmox-tui-installer/src/views/bootdisk.rs    | 10 +++++-----
 .../src/views/install_progress.rs              |  6 +++---
 proxmox-tui-installer/src/views/mod.rs         |  2 +-
 proxmox-tui-installer/src/views/tabbed_view.rs |  2 +-
 proxmox-tui-installer/src/views/table_view.rs  |  4 ++--
 proxmox-tui-installer/src/views/timezone.rs    |  4 ++--
 rustfmt.toml                                   |  2 +-
 33 files changed, 80 insertions(+), 72 deletions(-)

-- 
2.47.1



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel