summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Walbran <qwandor@google.com>2021-10-28 15:27:08 +0000
committerAndrew Walbran <qwandor@google.com>2021-10-28 17:12:23 +0000
commit2b46221057150e5da1d74412c628e3d150e57d0b (patch)
treeb5247051654bd365c6a3fe80dbf43e807837bb47
parent1ddd8728bb439631cf03ccc06cf859a6555ca5ac (diff)
downloadvmm_vhost-2b46221057150e5da1d74412c628e3d150e57d0b.tar.gz
Fix path to sys_util and tempfile.
This is needed for cargo2android.py to work properly for crosvm. Bug: 204072128 Test: ./all2android.sh under external/crosvm Change-Id: Ia4e1ad62564f3b1e082d0ae7fd65900b0fbade2f
-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]