1
Fork 0

libstd => libcore

This commit is contained in:
Lenny222 2012-01-17 19:43:29 +01:00 committed by Niko Matsakis
parent 106dcf7b92
commit b19fdcced2
4 changed files with 4 additions and 3 deletions

View file

@ -13,6 +13,7 @@ export either, option, result;
export ctypes, sys, unsafe, comm, task, logging; export ctypes, sys, unsafe, comm, task, logging;
export extfmt; export extfmt;
export math; export math;
export tuple;
// Built-in-type support modules // Built-in-type support modules
@ -41,6 +42,7 @@ mod unicode;
mod either; mod either;
mod option; mod option;
mod result; mod result;
mod tuple;
// Runtime and language-primitive support // Runtime and language-primitive support

View file

@ -12,7 +12,7 @@ export c_vec, four, tri, util;
export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap, ufind; export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap, ufind;
export rope; export rope;
export ebml, dbg, getopts, json, rand, sha1, term, time; export ebml, dbg, getopts, json, rand, sha1, term, time;
export extfmt, test, tempfile, tuple; export extfmt, test, tempfile;
// FIXME: generic_os and os_fs shouldn't be exported // FIXME: generic_os and os_fs shouldn't be exported
export generic_os, os, os_fs; export generic_os, os, os_fs;
@ -61,7 +61,6 @@ mod md4;
mod tempfile; mod tempfile;
mod term; mod term;
mod time; mod time;
mod tuple;
#[cfg(unicode)] #[cfg(unicode)]
mod unicode; mod unicode;

View file

@ -1,6 +1,6 @@
import rustc::syntax::ast; import rustc::syntax::ast;
import rustc::front::attr; import rustc::front::attr;
import std::tuple; import core::tuple;
export fn_attrs, arg_attrs; export fn_attrs, arg_attrs;
export parse_fn; export parse_fn;