diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2012-09-10 18:27:39 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-09-26 16:20:24 -0700 |
| commit | 780b23af73540dad0ec78488949bbcd380efd71e (patch) | |
| tree | 5f085370704e3c8787e9ab0f2d6fc891c4c333c0 /src/libstd/std.rc | |
| parent | 75935cea7f43c317fc876fe8f914c11ff43d1483 (diff) | |
| download | rust-780b23af73540dad0ec78488949bbcd380efd71e.tar.gz rust-780b23af73540dad0ec78488949bbcd380efd71e.zip | |
libstd: add the new trait-based serialization
This will need a snapshot before we can convert ebml and rustc to use the new-style serialization.
Diffstat (limited to 'src/libstd/std.rc')
| -rw-r--r-- | src/libstd/std.rc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstd/std.rc b/src/libstd/std.rc index 422ff81b9fe..5979b98478f 100644 --- a/src/libstd/std.rc +++ b/src/libstd/std.rc @@ -35,7 +35,7 @@ export bitv, deque, fun_treemap, list, map; export smallintmap, sort, treemap; export rope, arena, par; export ebml, dbg, getopts, json, rand, sha1, term, time, prettyprint; -export test, tempfile, serialization; +export test, tempfile, serialization, serialization2; export cmp; export base64; export cell; @@ -144,6 +144,8 @@ mod unicode; mod test; #[legacy_exports] mod serialization; +#[legacy_exports] +mod serialization2; // Local Variables: // mode: rust; |
