mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-15 00:55:21 +00:00
3a0429c998
There is no need to include serde_derive separately, as it can be specified as serde feature instead. Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
15 lines
378 B
TOML
15 lines
378 B
TOML
[package]
|
|
name = "vm-migration"
|
|
version = "0.1.0"
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.57"
|
|
thiserror = "1.0.31"
|
|
serde = { version = "1.0.137", features = ["rc", "derive"] }
|
|
serde_json = "1.0.81"
|
|
versionize = "0.1.6"
|
|
versionize_derive = "0.1.4"
|
|
vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] }
|