summary refs log tree commit diff
path: root/p9
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@chromium.org>2019-03-12 20:59:31 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-04-08 11:54:35 -0700
commit9b31123be7069ea05ea36b680f4e4e2cf02bbdd6 (patch)
tree74f150dc2e4f7ae4d3d14c848c1956f8da223ea6 /p9
parent417e3f22c988b155f40ab7b5f89eed5d6dccc85d (diff)
downloadcrosvm-9b31123be7069ea05ea36b680f4e4e2cf02bbdd6.tar
crosvm-9b31123be7069ea05ea36b680f4e4e2cf02bbdd6.tar.gz
crosvm-9b31123be7069ea05ea36b680f4e4e2cf02bbdd6.tar.bz2
crosvm-9b31123be7069ea05ea36b680f4e4e2cf02bbdd6.tar.lz
crosvm-9b31123be7069ea05ea36b680f4e4e2cf02bbdd6.tar.xz
crosvm-9b31123be7069ea05ea36b680f4e4e2cf02bbdd6.tar.zst
crosvm-9b31123be7069ea05ea36b680f4e4e2cf02bbdd6.zip
edition: Update p9 crate 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: I3a3abb1cf292624d0e4e3cc9a52276be42b0c5af
Reviewed-on: https://chromium-review.googlesource.com/1519702
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 'p9')
-rw-r--r--p9/Cargo.toml3
-rw-r--r--p9/wire_format_derive/Cargo.toml1
2 files changed, 3 insertions, 1 deletions
diff --git a/p9/Cargo.toml b/p9/Cargo.toml
index 964cd1c..40b5d62 100644
--- a/p9/Cargo.toml
+++ b/p9/Cargo.toml
@@ -2,10 +2,11 @@
 name = "p9"
 version = "0.1.0"
 authors = ["The Chromium OS Authors"]
+edition = "2018"
 
 [dependencies]
 libc = "*"
 wire_format_derive = { path = "wire_format_derive" }
 
 [features]
-trace = []
\ No newline at end of file
+trace = []
diff --git a/p9/wire_format_derive/Cargo.toml b/p9/wire_format_derive/Cargo.toml
index 9adbfb9..93d708e 100644
--- a/p9/wire_format_derive/Cargo.toml
+++ b/p9/wire_format_derive/Cargo.toml
@@ -2,6 +2,7 @@
 name = "wire_format_derive"
 version = "0.1.0"
 authors = ["The Chromium OS Authors"]
+edition = "2018"
 
 [dependencies]
 syn = "=0.15"