]> git.lizzy.rs Git - rust.git/commitdiff
Specify package_id for rust libs, to avoid spurious warnings
authorAndrei Formiga <archimedes_siracusa@hotmail.com>
Fri, 8 Nov 2013 20:42:29 +0000 (17:42 -0300)
committerAndrei Formiga <archimedes_siracusa@hotmail.com>
Fri, 8 Nov 2013 20:42:46 +0000 (17:42 -0300)
src/libextra/lib.rs
src/librustc/lib.rs
src/librustdoc/lib.rs
src/librustpkg/lib.rs
src/librustuv/lib.rs
src/libstd/lib.rs
src/libsyntax/lib.rs

index 8bb996172743ab21769ba9eb7f62435757a80938..a74c4993be3507e6b317bd9c019481d0f0a2b137 100644 (file)
@@ -21,6 +21,7 @@
 */
 
 #[link(name = "extra",
+       package_id = "extra",
        vers = "0.9-pre",
        uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
        url = "https://github.com/mozilla/rust/tree/master/src/libextra")];
index ba27b5a5f41b12480fbaa327f8ecbb19bd177882..bc436abbf5660c6fb322459698ca0fcfc08b620d 100644 (file)
@@ -9,6 +9,7 @@
 // except according to those terms.
 
 #[link(name = "rustc",
+       package_id = "rustc",
        vers = "0.9-pre",
        uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf",
        url = "https://github.com/mozilla/rust/tree/master/src/rustc")];
index c69fd9879ce2f6378c6e406be8ace46036402170..96624ec5b6c2be7f58579c536b0ee1c806566980 100644 (file)
@@ -9,6 +9,7 @@
 // except according to those terms.
 
 #[link(name = "rustdoc",
+       package_id = "rustdoc",
        vers = "0.9-pre",
        uuid = "8c6e4598-1596-4aa5-a24c-b811914bbbc6",
        url = "https://github.com/mozilla/rust/tree/master/src/librustdoc")];
index b493d562b8b13eb005692138083ee040e1d9d723..576f26b1c945f6b059644ae2b4b205f07c089c41 100644 (file)
@@ -11,6 +11,7 @@
 // rustpkg - a package manager and build system for Rust
 
 #[link(name = "rustpkg",
+       package_id = "rustpkg",
        vers = "0.9-pre",
        uuid = "25de5e6e-279e-4a20-845c-4cabae92daaf",
        url = "https://github.com/mozilla/rust/tree/master/src/librustpkg")];
index 9119d1fb4e39374d307b9e12b57d824a4a4e1295..f0a607ae35f1c5c00b026077abab64ee9bac7ca9 100644 (file)
@@ -35,6 +35,7 @@
 */
 
 #[link(name = "rustuv",
+       package_id = "rustuv",
        vers = "0.9-pre",
        uuid = "f3719011-0459-9b86-b11c-29265c0d0864",
        url = "https://github.com/mozilla/rust/tree/master/src/librustuv")];
index 880e71be8a1ca2d70eab7c2493595f7b0823b691..008f9b27a12e1d19db0f2a5ae4f72a4009175f7b 100644 (file)
@@ -44,6 +44,7 @@
 //!     use std::prelude::*;
 
 #[link(name = "std",
+       package_id = "std",
        vers = "0.9-pre",
        uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8",
        url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
index cf2c01e92b43bd145ed38250e8e279b67fa870ae..3673d3719ad5f9e8152da2266de3fad8297e1e9d 100644 (file)
@@ -14,6 +14,7 @@
  */
 
 #[link(name = "syntax",
+       package_id = "syntax",
        vers = "0.9-pre",
        uuid = "9311401b-d6ea-4cd9-a1d9-61f89499c645")];