mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
03dd1feab7
Previously all of the zerocopy imports just used "*", but there are API changes in zerocopy 0.7, so ensure we get a compatible version by depending on 0.6 everywhere. This is a no-op since Cargo.lock already specifies a 0.6.x version, but it will prevent accidentally upgrading to 0.7.x without updating to the new API. BUG=b:301283548 TEST=cargo build Change-Id: Ifd702d982a09b5083dddd666dc6f3052cba22214 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4878502 Reviewed-by: Zihan Chen <zihanchen@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
20 lines
448 B
TOML
20 lines
448 B
TOML
[package]
|
|
name = "vm_memory"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
include = ["src/**/*", "Cargo.toml"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.32"
|
|
cfg-if = "1.0.0"
|
|
cros_async = { path = "../cros_async" }
|
|
data_model = { path = "../common/data_model" }
|
|
libc = "*"
|
|
base = { path = "../base" }
|
|
bitflags = "2.2.1"
|
|
remain = "*"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|
|
thiserror = "*"
|
|
zerocopy = "0.6"
|