Files
cloud-hypervisor/vm-migration/Cargo.toml
Sebastien Boeuf 693c236e06 vm-migration: Use zerocopy for safe serialization
Getting rid of the unsafe ByteValued implementation for MemoryRange,
Request and Response structures, by relying on zerocopy's safe
implementation instead.

Signed-off-by: Sebastien Boeuf <sboeuf@meta.com>
Assisted-by: Claude:claude-opus-4-8
2026-06-26 14:59:45 +00:00

21 lines
579 B
TOML

[package]
authors = ["The Cloud Hypervisor Authors"]
edition.workspace = true
name = "vm-migration"
rust-version.workspace = true
version = "0.1.0"
[dependencies]
anyhow = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
rustls = { workspace = true }
serde = { workspace = true, features = ["derive", "rc"] }
serde_json = { workspace = true }
thiserror = { workspace = true }
vm-memory = { workspace = true, features = ["backend-atomic", "backend-mmap"] }
zerocopy = { workspace = true, features = ["alloc", "derive"] }
[lints]
workspace = true