summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Walbran <qwandor@google.com>2021-10-29 00:00:45 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-10-29 00:00:45 +0000
commit218348d4ec87f59f2591aea5ec9bd95f8a4df173 (patch)
treeb5247051654bd365c6a3fe80dbf43e807837bb47
parent1ddd8728bb439631cf03ccc06cf859a6555ca5ac (diff)
parent2b46221057150e5da1d74412c628e3d150e57d0b (diff)
downloadvmm_vhost-218348d4ec87f59f2591aea5ec9bd95f8a4df173.tar.gz
Fix path to sys_util and tempfile. am: 2b46221057
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/vmm_vhost/+/1874074 Change-Id: Id7cfd284a959466659b721f3f1513956bf4f3f78
-rw-r--r--Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 94a7f45..047be10 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -21,8 +21,8 @@ vhost-user-slave = ["vhost-user"]
[dependencies]
bitflags = ">=1.0.1"
libc = ">=0.2.39"
-sys_util = "*"
-tempfile = "*"
+sys_util = { path = "../../../external/crosvm/sys_util" }
+tempfile = { path = "../../../external/crosvm/tempfile" }
vm-memory = { version = "0.2.0", optional = true }
[dev-dependencies]