On 5/27/25 11:45, Zhao Liu wrote:
On Mon, May 26, 2025 at 04:24:45PM +0200, Paolo Bonzini wrote:
Date: Mon, 26 May 2025 16:24:45 +0200
From: Paolo Bonzini <pbonz...@redhat.com>
Subject: [PATCH 02/12] subprojects: add the anyhow crate
X-Mailer: git-send-email 2.49.0
This is a standard replacement for Box<dyn Error> which is more efficient (it
only
occcupies one word) and provides a backtrace of the error. This could be
plumbed
into &error_abort in the future.
Signed-off-by: Paolo Bonzini <pbonz...@redhat.com>
---
rust/meson.build | 2 ++
subprojects/.gitignore | 1 +
subprojects/anyhow-1.0-rs.wrap | 7 ++++
.../packagefiles/anyhow-1.0-rs/meson.build | 33 +++++++++++++++++++
4 files changed, 43 insertions(+)
create mode 100644 subprojects/anyhow-1.0-rs.wrap
create mode 100644 subprojects/packagefiles/anyhow-1.0-rs/meson.build
Missed to change scripts/archive-source.sh & scripts/make-release?
Yes, also the wrap name should be anyhow-1-rs because only the "0"
version gets an extra component.
Paolo