On Thu, Nov 27, 2025 at 02:20:31PM +0100, Paolo Bonzini wrote: > Date: Thu, 27 Nov 2025 14:20:31 +0100 > From: Paolo Bonzini <[email protected]> > Subject: [PATCH 4/9] rust/bql: make bindings public > X-Mailer: git-send-email 2.51.1 > > For consistency with other crates. > > Signed-off-by: Paolo Bonzini <[email protected]> > --- > rust/bql/src/lib.rs | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-)
Other crates appear to require being public mods to ensure binding compilation succeeds or to use raw binding in somewhere, but currently bql's raw binding hasn't been used anywhere. I think maybe it's better to keep this mod as private until someone needs it. This helps justify whether raw binding is truly necessary. Direct binding uses should be minimized if possible. Thanks, Zhao
