From 0b902e68d7ac35eeb0c41dba9c4f7a7e86d2ccc1 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 12 Mar 2019 20:59:00 -0700 Subject: [PATCH] edition: Update net_sys and net_util 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: Ibb78b8254693a68a55780ebea3e895c146a14119 Reviewed-on: https://chromium-review.googlesource.com/1519701 Commit-Ready: David Tolnay Commit-Ready: ChromeOS CL Exonerator Bot Tested-by: David Tolnay Tested-by: kokoro Reviewed-by: David Tolnay --- net_sys/Cargo.toml | 1 + net_util/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/net_sys/Cargo.toml b/net_sys/Cargo.toml index d6125e2edf..ec0426965f 100644 --- a/net_sys/Cargo.toml +++ b/net_sys/Cargo.toml @@ -2,6 +2,7 @@ name = "net_sys" version = "0.1.0" authors = ["The Chromium OS Authors"] +edition = "2018" [dependencies] sys_util = { path = "../sys_util" } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 1bcf18c0a7..bfa3bc8382 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -2,6 +2,7 @@ name = "net_util" version = "0.1.0" authors = ["The Chromium OS Authors"] +edition = "2018" [dependencies] libc = "*"