diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2014-12-21 10:36:31 +0000 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2014-12-29 16:19:10 +0100 |
commit | 540d21888558751a5fae0b71011306068a58bc6f (patch) | |
tree | 4eb231a1b765e7ba1e79029e282f7df003d1a65e | |
parent | b9a57531eabbfd919895323525a4891b6e57b122 (diff) | |
download | servo-540d21888558751a5fae0b71011306068a58bc6f.tar.gz servo-540d21888558751a5fae0b71011306068a58bc6f.zip |
Declare dependencies on text_writer.
Transitive dependencies being available is considered a bug:
https://github.com/rust-lang/cargo/issues/1037
-rw-r--r-- | components/servo/Cargo.lock | 2 | ||||
-rw-r--r-- | components/style/Cargo.toml | 2 | ||||
-rw-r--r-- | components/util/Cargo.toml | 3 | ||||
-rw-r--r-- | ports/cef/Cargo.lock | 2 | ||||
-rw-r--r-- | ports/gonk/Cargo.lock | 2 |
5 files changed, 11 insertions, 0 deletions
diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock index b0584810f6f..9075a588342 100644 --- a/components/servo/Cargo.lock +++ b/components/servo/Cargo.lock @@ -674,6 +674,7 @@ dependencies = [ "plugins 0.0.1", "string_cache 0.0.0 (git+https://github.com/servo/string-cache)", "string_cache_macros 0.0.0 (git+https://github.com/servo/string-cache)", + "text_writer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 0.1.0 (git+https://github.com/servo/rust-url)", "util 0.0.1", ] @@ -715,6 +716,7 @@ dependencies = [ "string_cache 0.0.0 (git+https://github.com/servo/string-cache)", "string_cache_macros 0.0.0 (git+https://github.com/servo/string-cache)", "task_info 0.0.1", + "text_writer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.0 (git+https://github.com/rust-lang/time)", "url 0.1.0 (git+https://github.com/servo/rust-url)", ] diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml index f0ab29d7148..db2cbe9ffc4 100644 --- a/components/style/Cargo.toml +++ b/components/style/Cargo.toml @@ -36,3 +36,5 @@ git = "https://github.com/servo/string-cache" [dependencies.string_cache_macros] git = "https://github.com/servo/string-cache" +[dependencies] +text_writer = "0.1.1" diff --git a/components/util/Cargo.toml b/components/util/Cargo.toml index e7faaebee97..086a57dad39 100644 --- a/components/util/Cargo.toml +++ b/components/util/Cargo.toml @@ -30,3 +30,6 @@ git = "https://github.com/servo/rust-url" [dependencies.time] git = "https://github.com/rust-lang/time" + +[dependencies] +text_writer = "0.1.1" diff --git a/ports/cef/Cargo.lock b/ports/cef/Cargo.lock index 1eb0fa96386..3ebeef17673 100644 --- a/ports/cef/Cargo.lock +++ b/ports/cef/Cargo.lock @@ -658,6 +658,7 @@ dependencies = [ "plugins 0.0.1", "string_cache 0.0.0 (git+https://github.com/servo/string-cache)", "string_cache_macros 0.0.0 (git+https://github.com/servo/string-cache)", + "text_writer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 0.1.0 (git+https://github.com/servo/rust-url)", "util 0.0.1", ] @@ -699,6 +700,7 @@ dependencies = [ "string_cache 0.0.0 (git+https://github.com/servo/string-cache)", "string_cache_macros 0.0.0 (git+https://github.com/servo/string-cache)", "task_info 0.0.1", + "text_writer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.0 (git+https://github.com/rust-lang/time)", "url 0.1.0 (git+https://github.com/servo/rust-url)", ] diff --git a/ports/gonk/Cargo.lock b/ports/gonk/Cargo.lock index f9baefb333e..19641c7399c 100644 --- a/ports/gonk/Cargo.lock +++ b/ports/gonk/Cargo.lock @@ -606,6 +606,7 @@ dependencies = [ "plugins 0.0.1", "string_cache 0.0.0 (git+https://github.com/servo/string-cache)", "string_cache_macros 0.0.0 (git+https://github.com/servo/string-cache)", + "text_writer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 0.1.0 (git+https://github.com/servo/rust-url)", "util 0.0.1", ] @@ -647,6 +648,7 @@ dependencies = [ "string_cache 0.0.0 (git+https://github.com/servo/string-cache)", "string_cache_macros 0.0.0 (git+https://github.com/servo/string-cache)", "task_info 0.0.1", + "text_writer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.0 (git+https://github.com/rust-lang/time)", "url 0.1.0 (git+https://github.com/servo/rust-url)", ] |