On Wed, Oct 01, 2025 at 09:52:05AM +0200, Paolo Bonzini wrote: > Date: Wed, 1 Oct 2025 09:52:05 +0200 > From: Paolo Bonzini <[email protected]> > Subject: [PATCH 06/11] 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 <[email protected]> > --- > 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 <[email protected]>
