summary refs log tree commit diff
path: root/msg_socket
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@chromium.org>2019-03-12 20:57:36 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-04-08 22:30:26 -0700
commita7d4ea6dd0646c2ed3f066e91d3d8b2ca62b5bad (patch)
treea2bbd02d5458ca5bbad8e7fae6b0d76f10671346 /msg_socket
parent7129a05b91283609c99b9805a7accf9ac42fad89 (diff)
downloadcrosvm-a7d4ea6dd0646c2ed3f066e91d3d8b2ca62b5bad.tar
crosvm-a7d4ea6dd0646c2ed3f066e91d3d8b2ca62b5bad.tar.gz
crosvm-a7d4ea6dd0646c2ed3f066e91d3d8b2ca62b5bad.tar.bz2
crosvm-a7d4ea6dd0646c2ed3f066e91d3d8b2ca62b5bad.tar.lz
crosvm-a7d4ea6dd0646c2ed3f066e91d3d8b2ca62b5bad.tar.xz
crosvm-a7d4ea6dd0646c2ed3f066e91d3d8b2ca62b5bad.tar.zst
crosvm-a7d4ea6dd0646c2ed3f066e91d3d8b2ca62b5bad.zip
edition: Update msg_socket to 2018 edition
Separated out of CL:1513058 to make it possible to land parts
individually while the affected crate has no other significant CLs
pending. This avoids repeatedly introducing non-textual conflicts with
new code that adds `use` statements.

TEST=cargo check
TEST=cargo check --all-features
TEST=cargo check --target aarch64-unknown-linux-gnu

Change-Id: I6d541d6d51498612c82072c64cb78eefcb2abb8c
Reviewed-on: https://chromium-review.googlesource.com/1519700
Commit-Ready: David Tolnay <dtolnay@chromium.org>
Tested-by: David Tolnay <dtolnay@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: David Tolnay <dtolnay@chromium.org>
Diffstat (limited to 'msg_socket')
-rw-r--r--msg_socket/Cargo.toml1
-rw-r--r--msg_socket/msg_on_socket_derive/Cargo.toml1
2 files changed, 2 insertions, 0 deletions
diff --git a/msg_socket/Cargo.toml b/msg_socket/Cargo.toml
index 0ce17b6..da95b85 100644
--- a/msg_socket/Cargo.toml
+++ b/msg_socket/Cargo.toml
@@ -2,6 +2,7 @@
 name = "msg_socket"
 version = "0.1.0"
 authors = ["The Chromium OS Authors"]
+edition = "2018"
 
 [dependencies]
 msg_on_socket_derive = { path = "msg_on_socket_derive" }
diff --git a/msg_socket/msg_on_socket_derive/Cargo.toml b/msg_socket/msg_on_socket_derive/Cargo.toml
index f8b7e8a..08d581a 100644
--- a/msg_socket/msg_on_socket_derive/Cargo.toml
+++ b/msg_socket/msg_on_socket_derive/Cargo.toml
@@ -2,6 +2,7 @@
 name = "msg_on_socket_derive"
 version = "0.1.0"
 authors = ["The Chromium OS Authors"]
+edition = "2018"
 
 [dependencies]
 syn = "=0.15"