From e40a7f32aae84f079e2a1d414ac136a466c39ce7 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 12 Mar 2019 20:53:14 -0700 Subject: [PATCH] edition: Update gpu_buffer, gpu_display, gpu_renderer 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: I290fc72e5624cf8b4b2bacaf124cc5b654255978 Reviewed-on: https://chromium-review.googlesource.com/1519696 Commit-Ready: David Tolnay Tested-by: David Tolnay Tested-by: kokoro Reviewed-by: David Tolnay --- gpu_buffer/Cargo.toml | 1 + gpu_display/Cargo.toml | 1 + gpu_renderer/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/gpu_buffer/Cargo.toml b/gpu_buffer/Cargo.toml index 239283dab6..553e608d76 100644 --- a/gpu_buffer/Cargo.toml +++ b/gpu_buffer/Cargo.toml @@ -2,6 +2,7 @@ name = "gpu_buffer" version = "0.1.0" authors = ["The Chromium OS Authors"] +edition = "2018" [dependencies] data_model = { path = "../data_model" } diff --git a/gpu_display/Cargo.toml b/gpu_display/Cargo.toml index 403bc9ef86..0177f1e74c 100644 --- a/gpu_display/Cargo.toml +++ b/gpu_display/Cargo.toml @@ -2,6 +2,7 @@ name = "gpu_display" version = "0.1.0" authors = ["The Chromium OS Authors"] +edition = "2018" [dependencies] data_model = { path = "../data_model" } diff --git a/gpu_renderer/Cargo.toml b/gpu_renderer/Cargo.toml index fb95813bbe..6fcd22e93e 100644 --- a/gpu_renderer/Cargo.toml +++ b/gpu_renderer/Cargo.toml @@ -2,6 +2,7 @@ name = "gpu_renderer" version = "0.1.0" authors = ["The Chromium OS Authors"] +edition = "2018" [dependencies] data_model = { path = "../data_model" }