diff --git a/man/rustc.1 b/man/rustc.1 index 6b7243541c41a..197b0d43744d0 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 e675aca38aa98..4c6557f0f6580 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 a12198b771b82..9ad4ce16e0828 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 1c48b9d4f0c51..89bb6eb169fc7 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 c31d746d8f2a7..7b008a76dd6df 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 80f8019bc413f..1cd6f7f66851f 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 0149896c4d4f6..535b15708c392 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 ce8d1ca46a815..8134f5210243a 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 9446919d24e33..459e1592f6734 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 7daaca41cd51a..e5bd81cb81607 100644 --- a/src/libflate/lib.rs +++ b/src/libflate/lib.rs @@ -25,7 +25,7 @@ Simple [DEFLATE][def]-based compression. This is a wrapper around the #![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 af379ac7c2ac9..ffa72e6d7958e 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 71e8b2e78ef10..5adad73b22dd1 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 4de8faf20a033..d9584c2db4ebb 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 be37ba292d0dd..f7908b76ab516 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 b7a37e7ad3156..8eee7ed845fec 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 672e3fc826e0e..8335cc16d649f 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 d8faee206527c..d7898321598aa 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 8f0054a37fa79..4c0406eedf2e2 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 63683076000ac..d738a3c93b8df 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 4de08541a3cf7..063bb17e09a6d 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 051137502ecb1..9a364150ec5ec 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 27a7445c7bb31..07474a9f10587 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 a4b713b4d1dfb..bb6df26dab4f5 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 6663e5a3bb3fe..f962e139d2df3 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 1539d16c17ece..faa89bc9b1155 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 14927e5d8ab87..bd440892515e5 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -26,7 +26,7 @@ This API is completely unstable and subject to change. #![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 6486442deb8d8..c11eb3ab60357 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 ad2b6891dc99e..741a3450a4242 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 64e5970092bb7..f2aece2971bc7 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 ea42dc0c7708e..cc0e7d9ba2d98 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 e906fed448fac..e433868901672 100644 --- a/src/libserialize/lib.rs +++ b/src/libserialize/lib.rs @@ -21,7 +21,7 @@ Core encoding and decoding interfaces. #![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 4b1bb96e8ff69..ca11a7c04b7a5 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 71e74308abd30..a33e8a57137fa 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 a17b08ba84da3..3a4c7abd7b836 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 bd5a0e8f4160d..5af978cdd75a2 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 09c475792a30f..307c4b27886a4 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 1d23b0fcadb2b..b94885290b3a4 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 239966cfd475d..2918bad03df29 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 5447fa10c8d53..bf9a959afffbd 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 449df0b804cb0..c041ca3799dc4 100644 --- a/src/libuuid/lib.rs +++ b/src/libuuid/lib.rs @@ -65,7 +65,7 @@ Examples of string representations: #![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)]