From 48ff4165d273d929349b8f38169ab6dd8ba2be74 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 6 Apr 2019 14:30:04 -0700 Subject: cargo: Sort all dependency lists in Cargo.toml This may help reduce cases of conflicts between independent CLs each appending a dependency at the bottom of the list, of which I hit two today rebasing some of my open CLs. TEST=cargo check --all-features Change-Id: Ief10bb004cc7b44b107dc3841ce36c6b23632aed Reviewed-on: https://chromium-review.googlesource.com/1557172 Commit-Ready: David Tolnay Tested-by: David Tolnay Tested-by: kokoro Reviewed-by: Daniel Verkamp --- devices/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'devices/Cargo.toml') diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 79d4367..c1ddad0 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -4,23 +4,23 @@ version = "0.1.0" authors = ["The Chromium OS Authors"] [features] -wl-dmabuf = [] gpu = ["gpu_buffer", "gpu_display", "gpu_renderer"] -tpm = ["tpm2"] sandboxed-libusb = ["usb_util/sandboxed-libusb"] +tpm = ["tpm2"] +wl-dmabuf = [] [dependencies] audio_streams = "*" bit_field = { path = "../bit_field" } byteorder = "*" data_model = { path = "../data_model" } +enumn = { path = "../enumn" } gpu_buffer = { path = "../gpu_buffer", optional = true } gpu_display = { path = "../gpu_display", optional = true } gpu_renderer = { path = "../gpu_renderer", optional = true } -enumn = { path = "../enumn" } +io_jail = { path = "../io_jail" } kvm = { path = "../kvm" } libc = "*" -io_jail = { path = "../io_jail" } msg_on_socket_derive = { path = "../msg_socket/msg_on_socket_derive" } msg_socket = { path = "../msg_socket" } net_sys = { path = "../net_sys" } -- cgit 1.4.1