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 --- x86_64/Cargo.toml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'x86_64') diff --git a/x86_64/Cargo.toml b/x86_64/Cargo.toml index 62f9ed5..937702f 100644 --- a/x86_64/Cargo.toml +++ b/x86_64/Cargo.toml @@ -7,19 +7,18 @@ build = "build.rs" [dependencies] arch = { path = "../arch" } +byteorder = "*" data_model = { path = "../data_model" } devices = { path = "../devices" } io_jail = { path = "../io_jail" } -kvm_sys = { path = "../kvm_sys" } -kvm = { path = "../kvm" } -sync = { path = "../sync" } -sys_util = { path = "../sys_util" } -resources = { path = "../resources" } kernel_cmdline = { path = "../kernel_cmdline" } kernel_loader = { path = "../kernel_loader" } +kvm = { path = "../kvm" } +kvm_sys = { path = "../kvm_sys" } libc = "*" -byteorder = "*" +resources = { path = "../resources" } +sync = { path = "../sync" } +sys_util = { path = "../sys_util" } [build-dependencies] cc = "=1.0.25" - -- cgit 1.4.1