Skip to content

Commit 6b1ae50

Browse files
committed
Upgrade to rustc 1.0.0-nightly (123a754cb 2015-03-24) (built 2015-03-25)
1 parent 6fd8f21 commit 6b1ae50

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ extern crate encoding;
6868
extern crate text_writer;
6969
#[macro_use] extern crate matches;
7070
#[cfg(test)] extern crate tempdir;
71-
#[cfg(test)] extern crate "rustc-serialize" as serialize;
71+
#[cfg(test)] extern crate rustc_serialize;
7272

7373
pub use tokenizer::{Token, NumericValue, PercentageValue, SourceLocation};
7474
pub use rules_and_declarations::{parse_important};

src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::path::Path;
99
use std::process::Command;
1010
use std::num::Float;
1111
use std::mem;
12-
use serialize::json::{self, Json, ToJson};
12+
use rustc_serialize::json::{self, Json, ToJson};
1313
use tempdir::TempDir;
1414

1515
use encoding::label::encoding_from_whatwg_label;

0 commit comments

Comments
 (0)