mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 03:57:24 +00:00
7990b9da3c
The crates do the same thing, but static_assertions is proven and stable, with no added dependencies. Note: While this won't require changes to chromeos ebuild files it will require the removal of dev-rust/assertions when crosvm-base is upreved. BUG=b:255989923 TEST=presbumit Change-Id: I1420447ebdaa1a3649b30e6a6ec57f8dee858b98 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3988328 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
15 lines
322 B
TOML
15 lines
322 B
TOML
[package]
|
|
name = "vhost"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
static_assertions = "1.1"
|
|
libc = "*"
|
|
net_util = { path = "../net_util" }
|
|
base = { path = "../base" }
|
|
remain = "*"
|
|
thiserror = "*"
|
|
virtio_sys = { path = "../virtio_sys" }
|
|
vm_memory = { path = "../vm_memory" }
|