summary refs log tree commit diff
path: root/crosvm_plugin
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@chromium.org>2019-04-10 17:59:15 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-04-12 14:49:56 -0700
commitfd67ec5ffc84d8726ebcb141ddb93e10a046ee72 (patch)
tree1372d65c4a93f144a0ef39afc0e4ceaffd52f6a2 /crosvm_plugin
parent0268e26e1ac9e09aa51d733482c5df139cd8d588 (diff)
downloadcrosvm-fd67ec5ffc84d8726ebcb141ddb93e10a046ee72.tar
crosvm-fd67ec5ffc84d8726ebcb141ddb93e10a046ee72.tar.gz
crosvm-fd67ec5ffc84d8726ebcb141ddb93e10a046ee72.tar.bz2
crosvm-fd67ec5ffc84d8726ebcb141ddb93e10a046ee72.tar.lz
crosvm-fd67ec5ffc84d8726ebcb141ddb93e10a046ee72.tar.xz
crosvm-fd67ec5ffc84d8726ebcb141ddb93e10a046ee72.tar.zst
crosvm-fd67ec5ffc84d8726ebcb141ddb93e10a046ee72.zip
protos: Update to protobuf 2.3
This matches the version already used by crostini_client.

The newer protobuf version depends on the tempfile crate rather than
tempdir, the latter being now deprecated. So I replaced our immitation
tempdir crate with one that matches the API of tempfile instead. As a
reminder, we use this crate as a patch to avoid pulling in all of the
rand crate and its many dependencies.

TEST=cargo check --features plugin
CQ-DEPEND=CL:1553971

Change-Id: I28eed3ceadb1013f015400b4c582aaf8dc89eee1
Reviewed-on: https://chromium-review.googlesource.com/1562924
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Tested-by: David Tolnay <dtolnay@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Zach Reizner <zachr@chromium.org>
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
Diffstat (limited to 'crosvm_plugin')
-rw-r--r--crosvm_plugin/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crosvm_plugin/Cargo.toml b/crosvm_plugin/Cargo.toml
index 84d9847..379d837 100644
--- a/crosvm_plugin/Cargo.toml
+++ b/crosvm_plugin/Cargo.toml
@@ -12,5 +12,5 @@ kvm = { path = "../kvm" }
 kvm_sys = { path = "../kvm_sys" }
 libc = "*"
 plugin_proto = { path = "../plugin_proto" }
-protobuf = "=1.4.3"
+protobuf = "2.3"
 sys_util = { path = "../sys_util" }