Move extra::json to libserialize

This also inverts the dependency between libserialize and libcollections.

cc #8784
This commit is contained in:
Alex Crichton
2014-02-21 14:18:39 -08:00
parent 672097753a
commit 6485917d7c
26 changed files with 340 additions and 331 deletions

View File

@@ -26,12 +26,15 @@ Core encoding and decoding interfaces.
#[cfg(test)]
extern crate test;
extern crate collections;
pub use self::serialize::{Decoder, Encoder, Decodable, Encodable,
DecoderHelpers, EncoderHelpers};
DecoderHelpers, EncoderHelpers};
mod serialize;
mod collection_impls;
pub mod base64;
pub mod ebml;
pub mod hex;
pub mod json;