Files
cloud-hypervisor/vm-migration/Cargo.toml
Sebastian Eydam 8e9d779688 vm-migration: client-side of a TLS connection
TLS connections have a TLS server (listens for incoming connections) and
a TLS client (initiates the connection). This commit adds the code for
the client side, which is the sender of a migration

On-behalf-of: SAP sebastian.eydam@sap.com
Signed-off-by: Sebastian Eydam <sebastian.eydam@cyberus-technology.de>
2026-06-12 10:11:56 +00:00

20 lines
515 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"] }
[lints]
workspace = true