diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-02-21 14:18:39 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-02-24 09:51:39 -0800 |
| commit | 6485917d7ca832ee8867c6a7a55af3ed1e9d304c (patch) | |
| tree | b5c5ce62644376eae2ebb150c5d14a8eb34fe5fb /src/libsyntax/parse | |
| parent | 672097753a217d4990129cbdfab16ef8c9b08b21 (diff) | |
| download | rust-6485917d7ca832ee8867c6a7a55af3ed1e9d304c.tar.gz rust-6485917d7ca832ee8867c6a7a55af3ed1e9d304c.zip | |
Move extra::json to libserialize
This also inverts the dependency between libserialize and libcollections. cc #8784
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/mod.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs index 08aec075770..9d0c9d0f4d3 100644 --- a/src/libsyntax/parse/mod.rs +++ b/src/libsyntax/parse/mod.rs @@ -283,10 +283,8 @@ pub fn maybe_aborted<T>(result: T, mut p: Parser) -> T { #[cfg(test)] mod test { - extern crate extra; - use self::extra::json; use super::*; - use serialize::Encodable; + use serialize::{json, Encodable}; use std::io; use std::io::MemWriter; use std::str; |
