From c6262c368f88e4f999380f2245407abfefb29ee7 Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Wed, 10 Feb 2016 17:38:59 +0100 Subject: [PATCH] Reorder dependencies in some Cargo.toml files --- components/compositing/Cargo.toml | 6 +++--- components/gfx/Cargo.toml | 2 +- components/style/Cargo.toml | 16 ++++++++-------- tests/unit/style/Cargo.toml | 4 ++-- tests/unit/util/Cargo.toml | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/components/compositing/Cargo.toml b/components/compositing/Cargo.toml index 937bc11e3bb..addf0342136 100644 --- a/components/compositing/Cargo.toml +++ b/components/compositing/Cargo.toml @@ -83,14 +83,14 @@ git = "https://github.com/servo/gaol" [dependencies] app_units = {version = "0.2", features = ["plugins"]} +euclid = {version = "0.6.1", features = ["plugins"]} +gleam = "0.2" image = "0.5.0" log = "0.3" num = "0.1.24" -time = "0.1.17" -gleam = "0.2" -euclid = {version = "0.6.1", features = ["plugins"]} serde = "0.6" serde_macros = "0.6" +time = "0.1.17" url = {version = "0.5.4", features = ["heap_size"]} [target.x86_64-apple-darwin.dependencies] diff --git a/components/gfx/Cargo.toml b/components/gfx/Cargo.toml index 874e95d591a..bf0b2610498 100644 --- a/components/gfx/Cargo.toml +++ b/components/gfx/Cargo.toml @@ -24,12 +24,12 @@ rand = "0.3" rustc-serialize = "0.3" serde = "0.6" serde_macros = "0.6" +servo-skia = "0.20130412.0" smallvec = "0.1" string_cache = {version = "0.2.7", features = ["heap_size"]} time = "0.1.12" unicode-script = { version = "0.1", features = ["harfbuzz"] } url = {version = "0.5.4", features = ["heap_size"]} -servo-skia = "0.20130412.0" [dependencies.plugins] path = "../plugins" diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml index 85a300d17d6..ef41811acea 100644 --- a/components/style/Cargo.toml +++ b/components/style/Cargo.toml @@ -20,23 +20,23 @@ path = "../style_traits" [dependencies] app_units = {version = "0.2", features = ["plugins"]} +bitflags = "0.3" cssparser = {version = "0.5.2", features = ["heap_size", "serde-serialization"]} -log = "0.3" encoding = "0.2" +euclid = {version = "0.6.1", features = ["plugins"]} fnv = "1.0" heapsize = "0.2.5" heapsize_plugin = "0.1.2" -rustc-serialize = "0.3" -matches = "0.1" -bitflags = "0.3" -num = "0.1.24" lazy_static = "0.1.10" +log = "0.3" +matches = "0.1" +num = "0.1.24" +rustc-serialize = "0.3" selectors = {version = "0.4.1", features = ["heap_size", "unstable"]} -smallvec = "0.1" -string_cache = {version = "0.2.7", features = ["heap_size"]} -euclid = {version = "0.6.1", features = ["plugins"]} serde = "0.6" serde_macros = "0.6" +smallvec = "0.1" +string_cache = {version = "0.2.7", features = ["heap_size"]} time = "0.1" url = {version = "0.5.4", features = ["heap_size"]} diff --git a/tests/unit/style/Cargo.toml b/tests/unit/style/Cargo.toml index 0365fe27b94..5ae98b553c3 100644 --- a/tests/unit/style/Cargo.toml +++ b/tests/unit/style/Cargo.toml @@ -25,8 +25,8 @@ path = "../../../components/util" [dependencies] app_units = {version = "0.2", features = ["plugins"]} -url = {version = "0.5.4", features = ["heap_size"]} cssparser = {version = "0.5.2", features = ["heap_size"]} +euclid = {version = "0.6.1", features = ["plugins"]} selectors = {version = "0.4.1", features = ["heap_size"]} string_cache = {version = "0.2.7", features = ["heap_size"]} -euclid = {version = "0.6.1", features = ["plugins"]} +url = {version = "0.5.4", features = ["heap_size"]} diff --git a/tests/unit/util/Cargo.toml b/tests/unit/util/Cargo.toml index 52ec2be61a2..ace00974f3e 100644 --- a/tests/unit/util/Cargo.toml +++ b/tests/unit/util/Cargo.toml @@ -17,6 +17,6 @@ path = "../../../components/plugins" [dependencies] app_units = {version = "0.2", features = ["plugins"]} -libc = "0.2" euclid = {version = "0.6.1", features = ["plugins"]} +libc = "0.2"