aboutsummaryrefslogtreecommitdiff
path: root/src/lib/std.rc
diff options
context:
space:
mode:
authorBrian Anderson <[email protected]>2011-03-07 21:21:01 -0500
committerBrian Anderson <[email protected]>2011-03-07 21:21:01 -0500
commit9fc4db6b89213afdf45c02fc2bd2be62b0ddc40c (patch)
tree6c84574116273f91cbe89abd256b9f809adf97de /src/lib/std.rc
parentAllow the else part of an expr_if to be either expr_if or expr_block (diff)
parentrustc: Cast the LLVM representations of tag types when constructing boxes. Un... (diff)
downloadrust-9fc4db6b89213afdf45c02fc2bd2be62b0ddc40c.tar.xz
rust-9fc4db6b89213afdf45c02fc2bd2be62b0ddc40c.zip
Merge branch 'master' into recursive-elseif
Conflicts: src/Makefile src/comp/front/ast.rs src/comp/front/parser.rs src/comp/middle/fold.rs src/comp/middle/trans.rs
Diffstat (limited to 'src/lib/std.rc')
-rw-r--r--src/lib/std.rc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/std.rc b/src/lib/std.rc
index 102aa4d1..4ad422a3 100644
--- a/src/lib/std.rc
+++ b/src/lib/std.rc
@@ -14,7 +14,7 @@ mod _str;
// General IO and system-services modules.
-mod _io;
+mod io;
mod sys;
mod _task;
@@ -25,7 +25,7 @@ mod util;
// Authorize various rule-bendings.
-auth _io = unsafe;
+auth io = unsafe;
auth _str = unsafe;
auth _vec = unsafe;
auth _task = unsafe;
@@ -57,6 +57,7 @@ mod dbg;
mod bitv;
mod sort;
mod path;
+mod sha1;
// Local Variables:
// mode: rust;