diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-02-26 21:00:43 -0800 | 
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-04 15:59:30 -0800 | 
| commit | 95d904625b4d45af80b4e40d51a3a0fde1abaa8a (patch) | |
| tree | b0872e63b8d75543ce5141ceba44c12c459474f2 /src/librustdoc/html/layout.rs | |
| parent | 3b3bb0e682c2d252e9f62dd9df5cff9552af91ad (diff) | |
| download | rust-95d904625b4d45af80b4e40d51a3a0fde1abaa8a.tar.gz rust-95d904625b4d45af80b4e40d51a3a0fde1abaa8a.zip | |
std: Deprecate std::old_io::fs
This commit deprecates the majority of std::old_io::fs in favor of std::fs and its new functionality. Some functions remain non-deprecated but are now behind a feature gate called `old_fs`. These functions will be deprecated once suitable replacements have been implemented. The compiler has been migrated to new `std::fs` and `std::path` APIs where appropriate as part of this change.
Diffstat (limited to 'src/librustdoc/html/layout.rs')
| -rw-r--r-- | src/librustdoc/html/layout.rs | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/src/librustdoc/html/layout.rs b/src/librustdoc/html/layout.rs index c537e370723..3acd17dedd5 100644 --- a/src/librustdoc/html/layout.rs +++ b/src/librustdoc/html/layout.rs @@ -9,7 +9,8 @@ // except according to those terms. use std::fmt; -use std::old_io; +use std::io::prelude::*; +use std::io; use externalfiles::ExternalHtml; @@ -31,8 +32,8 @@ pub struct Page<'a> { } pub fn render<T: fmt::Display, S: fmt::Display>( - dst: &mut old_io::Writer, layout: &Layout, page: &Page, sidebar: &S, t: &T) - -> old_io::IoResult<()> + dst: &mut io::Write, layout: &Layout, page: &Page, sidebar: &S, t: &T) + -> io::Result<()> { write!(dst, r##"<!DOCTYPE html> @@ -159,7 +160,7 @@ r##"<!DOCTYPE html> ) } -pub fn redirect(dst: &mut old_io::Writer, url: &str) -> old_io::IoResult<()> { +pub fn redirect(dst: &mut io::Write, url: &str) -> io::Result<()> { // <script> triggers a redirect before refresh, so this is fine. write!(dst, r##"<!DOCTYPE html> | 
