Skip to content

Upgrade to rustc 1.0.0-dev (1760e8749 2015-03-16) (built 2015-03-17). #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/tokenizer/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ use core::clone::Clone;
use tokenizer::states;

use collections::vec::Vec;
use collections::slice::SliceExt;
use collections::string::String;
use std::borrow::Cow;
use std::marker::Send;
Expand Down
2 changes: 0 additions & 2 deletions src/tokenizer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ use core::mem::replace;
use core::default::Default;
use alloc::boxed::Box;
use collections::vec::Vec;
use collections::slice::SliceExt;
use collections::string::{String, ToString};
use collections::str::StrExt;
use std::borrow::Cow::{self, Borrowed};
use std::collections::BTreeMap;

Expand Down
1 change: 0 additions & 1 deletion src/util/str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ use collections::string::String;
use core::fmt::Debug;

pub fn to_escaped_string<T: Debug>(x: &T) -> String {
use collections::str::StrExt;
use core::fmt::Write;

// FIXME: don't allocate twice
Expand Down