diff options
author | Bogdan Cuza <bogdan.cuza@hotmail.com> | 2015-07-17 10:20:55 +0300 |
---|---|---|
committer | Bogdan Cuza <bogdan.cuza@hotmail.com> | 2015-07-20 20:08:08 +0300 |
commit | 0baa6b477cb28bf479a23ea889f2d972dce37f86 (patch) | |
tree | a4cf1ac5937a39d228340eb0a5d0813417ad2c21 | |
parent | 75e14e80cd28c9bcb2b6250c16e69ac66c741bde (diff) | |
download | servo-0baa6b477cb28bf479a23ea889f2d972dce37f86.tar.gz servo-0baa6b477cb28bf479a23ea889f2d972dce37f86.zip |
Replace astersisks with appropriate versions in deps
-rw-r--r-- | components/canvas/Cargo.toml | 2 | ||||
-rw-r--r-- | components/compositing/Cargo.toml | 6 | ||||
-rw-r--r-- | components/devtools/Cargo.toml | 4 | ||||
-rw-r--r-- | components/devtools_traits/Cargo.toml | 4 | ||||
-rw-r--r-- | components/gfx/Cargo.toml | 16 | ||||
-rw-r--r-- | components/layout/Cargo.toml | 10 | ||||
-rw-r--r-- | components/layout_traits/Cargo.toml | 4 | ||||
-rw-r--r-- | components/msg/Cargo.toml | 8 | ||||
-rw-r--r-- | components/net/Cargo.toml | 4 | ||||
-rw-r--r-- | components/net_traits/Cargo.toml | 6 | ||||
-rw-r--r-- | components/profile/Cargo.toml | 4 | ||||
-rw-r--r-- | components/script/Cargo.toml | 10 | ||||
-rw-r--r-- | components/script_traits/Cargo.toml | 6 | ||||
-rw-r--r-- | components/servo/Cargo.toml | 6 | ||||
-rw-r--r-- | components/style/Cargo.toml | 8 | ||||
-rw-r--r-- | components/util/Cargo.toml | 12 | ||||
-rw-r--r-- | components/webdriver_server/Cargo.toml | 4 | ||||
-rw-r--r-- | ports/glutin/Cargo.toml | 12 | ||||
-rw-r--r-- | ports/gonk/Cargo.toml | 6 | ||||
-rw-r--r-- | tests/unit/net/Cargo.toml | 4 | ||||
-rw-r--r-- | tests/unit/style/Cargo.toml | 2 | ||||
-rw-r--r-- | tests/unit/util/Cargo.toml | 2 |
22 files changed, 70 insertions, 70 deletions
diff --git a/components/canvas/Cargo.toml b/components/canvas/Cargo.toml index 6300014b45c..28c3be043f4 100644 --- a/components/canvas/Cargo.toml +++ b/components/canvas/Cargo.toml @@ -28,7 +28,7 @@ git = "https://github.com/ecoal95/rust-offscreen-rendering-context" features = ["texture_surface"] [dependencies] -log = "*" +log = "0.3" cssparser = "0.3.1" num = "0.1.24" gleam = "0.1" diff --git a/components/compositing/Cargo.toml b/components/compositing/Cargo.toml index b9fea313f32..c26633d2e41 100644 --- a/components/compositing/Cargo.toml +++ b/components/compositing/Cargo.toml @@ -57,16 +57,16 @@ git = "https://github.com/aweinstock314/rust-clipboard" git = "https://github.com/pcwalton/ipc-channel" [dependencies] -log = "*" +log = "0.3" num = "0.1.24" url = "0.2.36" time = "0.1.17" -libc = "*" +libc = "0.1" gleam = "0.1" euclid = "0.1" [target.x86_64-apple-darwin.dependencies] -core-graphics = "*" +core-graphics = "0.1" [target.x86_64-apple-darwin.dependencies.core-text] git = "https://github.com/servo/core-text-rs" diff --git a/components/devtools/Cargo.toml b/components/devtools/Cargo.toml index ac16535dcd8..b2b9e07cdcd 100644 --- a/components/devtools/Cargo.toml +++ b/components/devtools/Cargo.toml @@ -21,7 +21,7 @@ path = "../msg" path = "../util" [dependencies] -log = "*" -time = "*" +log = "0.3" +time = "0.1" rustc-serialize = "0.3" url = "0.2" diff --git a/components/devtools_traits/Cargo.toml b/components/devtools_traits/Cargo.toml index 1dc3cfdc4a1..ab3bc4a9662 100644 --- a/components/devtools_traits/Cargo.toml +++ b/components/devtools_traits/Cargo.toml @@ -18,7 +18,7 @@ path = "../msg" path = "../util" [dependencies] -time = "*" +time = "0.1" rustc-serialize = "0.3" url = "0.2" -bitflags = "*" +bitflags = "0.3" diff --git a/components/gfx/Cargo.toml b/components/gfx/Cargo.toml index eaf53aac46b..1ea439152ba 100644 --- a/components/gfx/Cargo.toml +++ b/components/gfx/Cargo.toml @@ -45,24 +45,24 @@ git = "https://github.com/servo/skia" path = "../script_traits" [dependencies] -log = "*" +log = "0.3" fnv = "1.0" url = "0.2.36" time = "0.1.12" -bitflags = "*" +bitflags = "0.3" rustc-serialize = "0.3" -libc = "*" -rand = "*" +libc = "0.1" +rand = "0.3" harfbuzz = "0.1" smallvec = "0.1" string_cache = "0.1" euclid = "0.1" -serde = "*" -serde_macros = "*" +serde = "0.4" +serde_macros = "0.4" [target.x86_64-apple-darwin.dependencies] -core-foundation = "*" -core-graphics = "*" +core-foundation = "0.1" +core-graphics = "0.1" [target.i686-unknown-linux-gnu.dependencies.fontconfig] git = "https://github.com/servo/rust-fontconfig" diff --git a/components/layout/Cargo.toml b/components/layout/Cargo.toml index 526c1f73a7f..47bb810c7bc 100644 --- a/components/layout/Cargo.toml +++ b/components/layout/Cargo.toml @@ -59,18 +59,18 @@ git = "https://github.com/tomaka/clock_ticks" git = "https://github.com/pcwalton/ipc-channel" [dependencies] -log = "*" +log = "0.3" encoding = "0.2" fnv = "1.0" url = "0.2.36" -bitflags = "*" +bitflags = "0.3" rustc-serialize = "0.3" -libc = "*" +libc = "0.1" cssparser = "0.3.1" smallvec = "0.1" string_cache = "0.1" string_cache_plugin = "0.1" euclid = "0.1" -serde = "*" -serde_macros = "*" +serde = "0.4" +serde_macros = "0.4" diff --git a/components/layout_traits/Cargo.toml b/components/layout_traits/Cargo.toml index e7b0c54d998..f92fc5bb657 100644 --- a/components/layout_traits/Cargo.toml +++ b/components/layout_traits/Cargo.toml @@ -31,6 +31,6 @@ git = "https://github.com/pcwalton/ipc-channel" [dependencies] url = "0.2.36" euclid = "0.1" -serde = "*" -serde_macros = "*" +serde = "0.4" +serde_macros = "0.4" diff --git a/components/msg/Cargo.toml b/components/msg/Cargo.toml index d645bddb58b..b2d239c8c34 100644 --- a/components/msg/Cargo.toml +++ b/components/msg/Cargo.toml @@ -35,14 +35,14 @@ features = [ "serde_serialization" ] git = "https://github.com/pcwalton/ipc-channel" [dependencies] -bitflags = "*" +bitflags = "0.3" rustc-serialize = "0.3.4" euclid = "0.1" -serde = "*" -serde_macros = "*" +serde = "0.4" +serde_macros = "0.4" [target.x86_64-apple-darwin.dependencies] -core-foundation = "*" +core-foundation = "0.1" [target.x86_64-apple-darwin.dependencies.io-surface] git = "https://github.com/servo/io-surface-rs" diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml index 6773518e864..89242cdb9b1 100644 --- a/components/net/Cargo.toml +++ b/components/net/Cargo.toml @@ -25,12 +25,12 @@ version = "0.6" features = [ "serde-serialization" ] [dependencies] -log = "*" +log = "0.3" url = "0.2.36" time = "0.1.17" openssl="0.6.1" rustc-serialize = "0.3" -cookie="*" +cookie = "0.1" regex = "0.1.14" regex_macros = "0.1.8" flate2 = "0.2.0" diff --git a/components/net_traits/Cargo.toml b/components/net_traits/Cargo.toml index d16deebf4f3..bcb15a868ff 100644 --- a/components/net_traits/Cargo.toml +++ b/components/net_traits/Cargo.toml @@ -25,9 +25,9 @@ version = "0.6" features = [ "serde-serialization" ] [dependencies] -log = "*" +log = "0.3" url = "0.2.36" euclid = "0.1" -serde = "*" -serde_macros = "*" +serde = "0.4" +serde_macros = "0.4" diff --git a/components/profile/Cargo.toml b/components/profile/Cargo.toml index ec4017f2a56..58a6726f4d6 100644 --- a/components/profile/Cargo.toml +++ b/components/profile/Cargo.toml @@ -14,8 +14,8 @@ path = "../profile_traits" path = "../util" [dependencies] -log = "*" -libc = "*" +log = "0.3" +libc = "0.1" regex = "0.1.14" time = "0.1.12" diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index a06eabe8875..cdb925ff5eb 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -66,13 +66,13 @@ version = "0.6" features = [ "serde-serialization" ] [dependencies] -log = "*" +log = "0.3" encoding = "0.2" fnv = "1.0" time = "0.1.12" -bitflags = "*" -rustc-serialize = "*" -libc = "*" +bitflags = "0.3" +rustc-serialize = "0.3" +libc = "0.1" cssparser = "0.3.1" unicase = "0.1" num = "0.1.24" @@ -85,4 +85,4 @@ string_cache_plugin = "0.1" euclid = "0.1" tendril = "0.1.1" rand = "0.3" -serde = "*" +serde = "0.4" diff --git a/components/script_traits/Cargo.toml b/components/script_traits/Cargo.toml index 70b6dc2fd6d..d902192f700 100644 --- a/components/script_traits/Cargo.toml +++ b/components/script_traits/Cargo.toml @@ -27,8 +27,8 @@ git = "https://github.com/pcwalton/ipc-channel" [dependencies] url = "0.2.36" -libc = "*" +libc = "0.1" euclid = "0.1" -serde = "*" -serde_macros = "*" +serde = "0.4" +serde_macros = "0.4" diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml index de4ea392ae9..b96b734147e 100644 --- a/components/servo/Cargo.toml +++ b/components/servo/Cargo.toml @@ -101,8 +101,8 @@ path = "../../support/android-rs-glue/glue" optional = true [dependencies] -env_logger = "*" +env_logger = "0.3" url = "0.2.36" time = "0.1.12" -bitflags = "*" -libc = "*" +bitflags = "0.3" +libc = "0.1" diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml index c6451389e0d..8d256b02270 100644 --- a/components/style/Cargo.toml +++ b/components/style/Cargo.toml @@ -20,13 +20,13 @@ path = "../util" git = "https://github.com/servo/rust-selectors" [dependencies] -log = "*" +log = "0.3" encoding = "0.2" fnv = "1.0" rustc-serialize = "0.3" matches = "0.1" url = "0.2.36" -bitflags = "*" +bitflags = "0.3" cssparser = "0.3.2" num = "0.1.24" lazy_static = "0.1.10" @@ -34,6 +34,6 @@ smallvec = "0.1" string_cache = "0.1" string_cache_plugin = "0.1" euclid = "0.1" -serde = "*" -serde_macros = "*" +serde = "0.4" +serde_macros = "0.4" diff --git a/components/util/Cargo.toml b/components/util/Cargo.toml index 61687af1e95..4ec010aef40 100644 --- a/components/util/Cargo.toml +++ b/components/util/Cargo.toml @@ -22,10 +22,10 @@ path = "../plugins" git = "https://github.com/servo/rust-azure" [dependencies] -log = "*" -bitflags = "*" -libc = "*" -rand = "*" +log = "0.3" +bitflags = "0.3" +libc = "0.1" +rand = "0.3" rustc-serialize = "0.3" smallvec = "0.1" num_cpus = "0.2.2" @@ -33,6 +33,6 @@ cssparser = "0.3.1" num = "0.1.24" url = "0.2.36" euclid = "0.1" -serde = "*" -serde_macros = "*" +serde = "0.4" +serde_macros = "0.4" diff --git a/components/webdriver_server/Cargo.toml b/components/webdriver_server/Cargo.toml index 68edb4f86e0..59e25f9dd08 100644 --- a/components/webdriver_server/Cargo.toml +++ b/components/webdriver_server/Cargo.toml @@ -24,7 +24,7 @@ features = [ "serde-serialization" ] git = "https://github.com/pcwalton/ipc-channel" [dependencies] -log = "*" +log = "0.3" rustc-serialize = "0.3.4" url = "0.2.36" -uuid = "*" +uuid = "0.1"
\ No newline at end of file diff --git a/ports/glutin/Cargo.toml b/ports/glutin/Cargo.toml index c5972db9526..ef436de85ac 100644 --- a/ports/glutin/Cargo.toml +++ b/ports/glutin/Cargo.toml @@ -13,9 +13,9 @@ headless = ["glutin/headless"] [dependencies] time = "0.1.12" -bitflags = "*" -libc = "*" -url = "*" +bitflags = "0.3" +libc = "0.1" +url = "0.2" gleam = "0.1" euclid = "0.1" @@ -42,13 +42,13 @@ git = "https://github.com/servo/glutin" branch = "servo" [target.i686-unknown-linux-gnu.dependencies] -x11 = "*" +x11 = "1.1" [target.x86_64-unknown-linux-gnu.dependencies] -x11 = "*" +x11 = "1.1" [target.arm-unknown-linux-gnueabihf.dependencies] -x11 = "*" +x11 = "1.1" [target.x86_64-apple-darwin.dependencies] cgl = "0.1" diff --git a/ports/gonk/Cargo.toml b/ports/gonk/Cargo.toml index d280bfd9fd7..5599827516b 100644 --- a/ports/gonk/Cargo.toml +++ b/ports/gonk/Cargo.toml @@ -49,10 +49,10 @@ path = "../../components/util" git = "https://github.com/servo/rust-egl" [dependencies] -env_logger = "*" +env_logger = "0.3" url = "0.2.16" time = "0.1.17" -errno = "*" -libc = "*" +errno = "0.1" +libc = "0.1" euclid = "0.1" gleam = "0.1" diff --git a/tests/unit/net/Cargo.toml b/tests/unit/net/Cargo.toml index 7ec4008bbfd..eb2bffaac4d 100644 --- a/tests/unit/net/Cargo.toml +++ b/tests/unit/net/Cargo.toml @@ -18,6 +18,6 @@ path = "../../../components/net_traits" path = "../../../components/util" [dependencies] -cookie = "*" +cookie = "0.1" hyper = "0.6" -url = "*" +url = "0.2" diff --git a/tests/unit/style/Cargo.toml b/tests/unit/style/Cargo.toml index c6dc27e52be..b8ad8c9a5e0 100644 --- a/tests/unit/style/Cargo.toml +++ b/tests/unit/style/Cargo.toml @@ -18,7 +18,7 @@ path = "../../../components/util" git = "https://github.com/servo/rust-selectors" [dependencies] -url = "*" +url = "0.2" cssparser = "0.3.1" string_cache = "0.1" string_cache_plugin = "0.1" diff --git a/tests/unit/util/Cargo.toml b/tests/unit/util/Cargo.toml index 7982ddd5285..ddc3a6ef00d 100644 --- a/tests/unit/util/Cargo.toml +++ b/tests/unit/util/Cargo.toml @@ -16,6 +16,6 @@ path = "../../../components/util" path = "../../../components/plugins" [dependencies] -libc = "*" +libc = "0.1" euclid = "0.1" |