mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-08 03:11:46 +00:00
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>
10 lines
210 B
TOML
10 lines
210 B
TOML
[package]
|
|
name = "virtio_sys"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
base = { path = "../base" }
|
|
data_model = { path = "../common/data_model" }
|
|
zerocopy = "0.6"
|