diff --git a/man/rustc.1 b/man/rustc.1 index 6b7243541c41afb0f10f129b2367ba6dbf84ae35..197b0d43744d054530ee751fd63206bd247b5ac7 100644 --- a/man/rustc.1 +++ b/man/rustc.1 @@ -1,4 +1,4 @@ -.TH RUSTC "1" "March 2014" "rustc 0.12.0" "User Commands" +.TH RUSTC "1" "March 2014" "rustc 0.13.0" "User Commands" .SH NAME rustc \- The Rust compiler .SH SYNOPSIS diff --git a/man/rustdoc.1 b/man/rustdoc.1 index e675aca38aa9882993aeae8431fa85861f41882c..4c6557f0f65806a634fbe9fba3d1e8d0e3d291e5 100644 --- a/man/rustdoc.1 +++ b/man/rustdoc.1 @@ -1,4 +1,4 @@ -.TH RUSTDOC "1" "March 2014" "rustdoc 0.12.0" "User Commands" +.TH RUSTDOC "1" "March 2014" "rustdoc 0.13.0" "User Commands" .SH NAME rustdoc \- generate documentation from Rust source code .SH SYNOPSIS diff --git a/mk/main.mk b/mk/main.mk index a12198b771b828f3efc44a3fbcd8167c535a8484..9ad4ce16e0828b61a56d3b789b67780450ee8759 100644 --- a/mk/main.mk +++ b/mk/main.mk @@ -13,7 +13,7 @@ ###################################################################### # The version number -CFG_RELEASE_NUM=0.12.0 +CFG_RELEASE_NUM=0.13.0 CFG_FILENAME_EXTRA=4e7c5e5c diff --git a/src/etc/kate/rust.xml b/src/etc/kate/rust.xml index 1c48b9d4f0c51f33ed50e2cb831452e1e23bf64b..89bb6eb169fc73e14e1599248cc229f94a6f0be5 100644 --- a/src/etc/kate/rust.xml +++ b/src/etc/kate/rust.xml @@ -7,7 +7,7 @@ ]> - + fn diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index c31d746d8f2a76b11ed2fff06d729e7aa177da7a..7b008a76dd6df2fb70a072457390d6989706e9e5 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -66,7 +66,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![no_std] #![feature(lang_items, phase, unsafe_destructor)] diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs index 80f8019bc413f46b5c8e5cc91082f48f3825eb17..1cd6f7f66851fad944b3724a29483b7781185713 100644 --- a/src/libarena/lib.rs +++ b/src/libarena/lib.rs @@ -26,7 +26,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(unsafe_destructor)] #![allow(missing_doc)] diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs index 0149896c4d4f6e9773aebd33ec9b093a63beac91..535b15708c3921cdaa39aa2f98160b6ef7ed7230 100644 --- a/src/libcollections/lib.rs +++ b/src/libcollections/lib.rs @@ -19,7 +19,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index ce8d1ca46a81544c32114beae1ab6ee7d9fc73f0..8134f5210243ae49c5c290bd6a5ff64b88c9fb1a 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -53,7 +53,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![no_std] diff --git a/src/libdebug/lib.rs b/src/libdebug/lib.rs index 9446919d24e33107488d08e71872c3df89708d85..459e1592f673417b4437a7abd583bd5bc4a42c56 100644 --- a/src/libdebug/lib.rs +++ b/src/libdebug/lib.rs @@ -23,7 +23,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![experimental] #![feature(macro_rules)] #![allow(experimental)] diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs index 7daaca41cd51a1235fe5758541ad0eeb90ebb4e2..e5bd81cb8160795dfa75e1171d533026fa67aac7 100644 --- a/src/libflate/lib.rs +++ b/src/libflate/lib.rs @@ -25,7 +25,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(phase)] #[cfg(test)] #[phase(plugin, link)] extern crate log; diff --git a/src/libfourcc/lib.rs b/src/libfourcc/lib.rs index af379ac7c2ac9ba4c5c8129947e421a1690717b0..ffa72e6d7958ea4c17c357bb7c53a1041c78e82f 100644 --- a/src/libfourcc/lib.rs +++ b/src/libfourcc/lib.rs @@ -48,7 +48,7 @@ fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(plugin_registrar)] diff --git a/src/libgetopts/lib.rs b/src/libgetopts/lib.rs index 71e8b2e78ef10b5decf4690f794da9a3de43697f..5adad73b22dd17d405292dec3af7d370139e8bd3 100644 --- a/src/libgetopts/lib.rs +++ b/src/libgetopts/lib.rs @@ -85,7 +85,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(globs, phase)] #![feature(import_shadowing)] diff --git a/src/libglob/lib.rs b/src/libglob/lib.rs index 4de8faf20a033600eccef0fbea62e3187e118fc4..d9584c2db4ebb7af55b3fff282819a3133219084 100644 --- a/src/libglob/lib.rs +++ b/src/libglob/lib.rs @@ -31,7 +31,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(deprecated)] diff --git a/src/libgraphviz/lib.rs b/src/libgraphviz/lib.rs index be37ba292d0dd2181afbfef8b938a9d23aabf7a9..f7908b76ab516606814dfe470e321f45eac4c045 100644 --- a/src/libgraphviz/lib.rs +++ b/src/libgraphviz/lib.rs @@ -273,7 +273,7 @@ pub fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] use std::io; use std::str; diff --git a/src/libgreen/lib.rs b/src/libgreen/lib.rs index b7a37e7ad3156c962ea1746770739533dd35c887..8eee7ed845fece990ec35a2e70e776e767bd3c5c 100644 --- a/src/libgreen/lib.rs +++ b/src/libgreen/lib.rs @@ -180,7 +180,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] // NB this does *not* include globs, please keep it that way. diff --git a/src/libhexfloat/lib.rs b/src/libhexfloat/lib.rs index 672e3fc826e0eb016cee1da6bf122e93c75a8bf7..8335cc16d649f6767ad3a94ebec6433c28fb33d6 100644 --- a/src/libhexfloat/lib.rs +++ b/src/libhexfloat/lib.rs @@ -45,7 +45,7 @@ fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(plugin_registrar)] extern crate syntax; diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index d8faee206527c066aee80d7a0df39710f59d48ec..d7898321598aab02a9f27d5eb5f789d3977c4e9f 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -16,7 +16,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] /*! diff --git a/src/liblog/lib.rs b/src/liblog/lib.rs index 8f0054a37fa79a2acfd0767a69ee91001983afa1..4c0406eedf2e2dfc4389e2b9b709b371aca608ff 100644 --- a/src/liblog/lib.rs +++ b/src/liblog/lib.rs @@ -164,7 +164,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules)] #![deny(missing_doc)] diff --git a/src/libnative/lib.rs b/src/libnative/lib.rs index 63683076000ac1abaf76edbd41e727ff80b74d4f..d738a3c93b8df73f62f6bdbefffd8eea62e99e96 100644 --- a/src/libnative/lib.rs +++ b/src/libnative/lib.rs @@ -53,7 +53,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![deny(unused_result, unused_must_use)] #![allow(non_camel_case_types, deprecated)] diff --git a/src/libnum/lib.rs b/src/libnum/lib.rs index 4de08541a3cf7505cba5b805113e9aa738107f1f..063bb17e09a6d6947e0217d7db9e747d88b8ed35 100644 --- a/src/libnum/lib.rs +++ b/src/libnum/lib.rs @@ -56,7 +56,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(deprecated)] // from_str_radix diff --git a/src/librand/lib.rs b/src/librand/lib.rs index 051137502ecb15d981591651805a98b234a5dd33..9a364150ec5ecc7f1b90ba0aabc8a9ad16451154 100644 --- a/src/librand/lib.rs +++ b/src/librand/lib.rs @@ -21,7 +21,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, phase, globs)] diff --git a/src/librbml/lib.rs b/src/librbml/lib.rs index 27a7445c7bb3130e6062c956531fa4043c8f45a9..07474a9f105876b259de3128ee1fdcd59b367741 100644 --- a/src/librbml/lib.rs +++ b/src/librbml/lib.rs @@ -22,7 +22,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] #![feature(macro_rules, phase, slicing_syntax)] diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs index a4b713b4d1dfb128d70753ff92ade19e9f3be9d0..bb6df26dab4f5ddf4b349a860ce87f4207771388 100644 --- a/src/libregex/lib.rs +++ b/src/libregex/lib.rs @@ -365,7 +365,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libregex_macros/lib.rs b/src/libregex_macros/lib.rs index 6663e5a3bb3fe793cb5efa71f278c940f3bf66e9..f962e139d2df368eff64610836254bb11f8a5cee 100644 --- a/src/libregex_macros/lib.rs +++ b/src/libregex_macros/lib.rs @@ -17,7 +17,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(plugin_registrar, quote)] diff --git a/src/librlibc/lib.rs b/src/librlibc/lib.rs index 1539d16c17ece18ae623052adcf616cfbb3fa4d6..faa89bc9b1155d97e03bf4fa3d11dd8b2eed269b 100644 --- a/src/librlibc/lib.rs +++ b/src/librlibc/lib.rs @@ -26,7 +26,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(import_shadowing, intrinsics, phase)] #![no_std] diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index 14927e5d8ab87e96f4aeea3727fd5a2e256d07fe..bd440892515e52e2f6accd5b0f4b61933bcc378f 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -26,7 +26,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![allow(deprecated)] #![allow(unknown_features)] diff --git a/src/librustc_back/lib.rs b/src/librustc_back/lib.rs index 6486442deb8d8cb7b33760b7e61d5f7db70fe01f..c11eb3ab603577e8febc479da2952b9e8f963298 100644 --- a/src/librustc_back/lib.rs +++ b/src/librustc_back/lib.rs @@ -29,7 +29,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![allow(unknown_features)] #![feature(globs, phase, macro_rules, slicing_syntax)] diff --git a/src/librustc_llvm/lib.rs b/src/librustc_llvm/lib.rs index ad2b6891dc99e43ffdb6de4629939efd3646c201..741a3450a424252952b3cb9614f3f73033c80d3d 100644 --- a/src/librustc_llvm/lib.rs +++ b/src/librustc_llvm/lib.rs @@ -20,7 +20,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(globs)] #![feature(link_args)] diff --git a/src/librustrt/lib.rs b/src/librustrt/lib.rs index 64e5970092bb796ef5f1e20385cf58ef83140bea..f2aece2971bc7d0aeb87671074cd0cac7f2a26e6 100644 --- a/src/librustrt/lib.rs +++ b/src/librustrt/lib.rs @@ -14,7 +14,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![allow(unknown_features)] #![feature(macro_rules, phase, globs, thread_local, asm)] diff --git a/src/libsemver/lib.rs b/src/libsemver/lib.rs index ea42dc0c7708e34656f18594ade5251a5f53bb0f..cc0e7d9ba2d98f78e40d253aa227e2684a9a3845 100644 --- a/src/libsemver/lib.rs +++ b/src/libsemver/lib.rs @@ -37,7 +37,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(default_type_params)] use std::char; diff --git a/src/libserialize/lib.rs b/src/libserialize/lib.rs index e906fed448fac16f468a710ae055476cdd8fbcf8..e433868901672d2cd3370963f3e7ff3e2de82ae6 100644 --- a/src/libserialize/lib.rs +++ b/src/libserialize/lib.rs @@ -21,7 +21,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] #![feature(macro_rules, default_type_params, phase, slicing_syntax)] diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 4b1bb96e8ff69fd7899d6510daf2c866a002052f..ca11a7c04b7a5cfd0cde382a2a0362e02ce083af 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -102,7 +102,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs index 71e74308abd30366c4084257d897e1ee71f27e63..a33e8a57137fa45cc222ec3abb21e2aefb339dbb 100644 --- a/src/libsync/lib.rs +++ b/src/libsync/lib.rs @@ -24,7 +24,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(phase, globs, macro_rules, unsafe_destructor)] diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index a17b08ba84da389e9eff4b8b8d54ab15053686e2..3a4c7abd7b83610f2ace8f4968d8ab0d01b1d676 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -21,7 +21,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![allow(unknown_features)] #![feature(macro_rules, globs, default_type_params, phase, slicing_syntax)] diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs index bd5a0e8f4160d4996696befed74dc1f324a1cbf0..5af978cdd75a2e1fe3c393c832d64f0e8a2255b6 100644 --- a/src/libterm/lib.rs +++ b/src/libterm/lib.rs @@ -46,7 +46,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 09c475792a30f3a73d89186faabea742bfa6da26..307c4b27886a400d5e580a293f6f718ef5b3f695 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -31,7 +31,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(asm, macro_rules, phase)] diff --git a/src/libtime/lib.rs b/src/libtime/lib.rs index 1d23b0fcadb2b5df239e726bb05ca3e48e5af459..b94885290b3a40e98e6c8d707356624d53bcde1c 100644 --- a/src/libtime/lib.rs +++ b/src/libtime/lib.rs @@ -18,7 +18,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(phase)] diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs index 239966cfd475df1bd7bcc6a52b09ecb7cf332a49..2918bad03df29c1ecc62c8cf67fc0b0b1e5092f9 100644 --- a/src/libunicode/lib.rs +++ b/src/libunicode/lib.rs @@ -26,7 +26,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![no_std] diff --git a/src/liburl/lib.rs b/src/liburl/lib.rs index 5447fa10c8d532d1e6d5212f9a3efb04de54c821..bf9a959afffbda4d2380d20b2b7d6f93da9c11d6 100644 --- a/src/liburl/lib.rs +++ b/src/liburl/lib.rs @@ -18,7 +18,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(default_type_params)] diff --git a/src/libuuid/lib.rs b/src/libuuid/lib.rs index 449df0b804cb01d2f241c3bfef3a4f354a7a9092..c041ca3799dc4891f154d85a20cc773b4996bbcf 100644 --- a/src/libuuid/lib.rs +++ b/src/libuuid/lib.rs @@ -65,7 +65,7 @@ fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(default_type_params)]