mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 03:57:24 +00:00
Fixes compiler warning: warning: patch for the non root package will be ignored, specify patch at the workspace root: [...]/src/platform/crosvm/swap/Cargo.toml [...]/src/platform/crosvm/Cargo.toml The top-level crosvm/Cargo.toml already specifies the patch, so we can just remove it from swap/Cargo.toml BUG=None TEST=cargo build --features=swap TEST=emerge-brya crosvm Change-Id: Icdb9c7745478552ac01f07bdd5c799feff3f69a0 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4062050 Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
20 lines
424 B
TOML
20 lines
424 B
TOML
[package]
|
|
name = "swap"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
base = { path = "../base" }
|
|
data_model = "*"
|
|
libc = "*"
|
|
minijail = "*"
|
|
remain = "*"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "*"
|
|
sync = { path = "../common/sync" } # provided by ebuild
|
|
tempfile = "*"
|
|
thiserror = "*"
|
|
userfaultfd = "0.5.0"
|
|
vm_memory = { path = "../vm_memory"}
|