On Sat, Sep 20, 2025 at 04:29:53PM +0200, Paolo Bonzini wrote: > Date: Sat, 20 Sep 2025 16:29:53 +0200 > From: Paolo Bonzini <pbonz...@redhat.com> > Subject: [PATCH 2/7] rust: move VMState from bql to migration > X-Mailer: git-send-email 2.51.0 > > The high-level wrapper Migratable<T> will contain a BqlCell, > which would introduce a circular dependency betwen the bql and > migration crates. Move the implementation of VMState for cells > to "migration", together with the implementation for std types. > > Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> > --- > rust/Cargo.lock | 4 +--- > rust/bql/Cargo.toml | 3 --- > rust/bql/meson.build | 1 - > rust/bql/src/cell.rs | 6 ------ > rust/meson.build | 2 +- > rust/migration/Cargo.toml | 1 + > rust/migration/meson.build | 4 ++-- > rust/migration/src/vmstate.rs | 2 ++ > 8 files changed, 7 insertions(+), 16 deletions(-)
Reviewed-by: Zhao Liu <zhao1....@intel.com>