summary refs log tree commit diff
path: root/p9
diff options
context:
space:
mode:
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"