misc: Further improve imports stylingBy introducing `imports_granularity="Module"` format strategy,effectively groups imports from the same module into one line or block,improving maintainability
misc: Further improve imports stylingBy introducing `imports_granularity="Module"` format strategy,effectively groups imports from the same module into one line or block,improving maintainability and readability.Signed-off-by: Ruoqing He <heruoqing@iscas.ac.cn>
show more ...
build: Format Cargo.toml files using taploRun the taplo formatter with the newly added configuration fileSigned-off-by: Rob Bradford <rbradford@rivosinc.com>
vmm: Move SerialBuffer to its own crateWe want to be able to reuse the SerialBuffer from the virtio-devicescrate, particularly from the virtio-console implementation. That's whywe move the Serial
vmm: Move SerialBuffer to its own crateWe want to be able to reuse the SerialBuffer from the virtio-devicescrate, particularly from the virtio-console implementation. That's whywe move the SerialBuffer definition to its own crate so that it can beaccessed from both vmm and virtio-devices crates, without creating anycyclic dependency.Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>